我正在构建一个平台,其中的主域是example.com。服务器在Apache2中使用CentOS 7。
我的用户的URL将是username.example.com,它实际上加载了example.com/username中的内容,这样:
mjohnson.example.com加载example.com/mjohnson中的内容
from /about加载example.com/mjohnson/about中的内容。
from /加载example.com/jsmith/的内容。
这个设置最好的方法是什么?我完全可以访问httpd.conf配置文件。
jclass queueCls = (jclass)(*env)->FindClass(env, "java/util/concurrent/LinkedBlockingQueue");
if(queueCls == NULL) {
LOGE("can not get class for blocking queue");
return;
}
jmethodID take = (*env)->GetMethodID(env, queueCls, "take"
我的应用程序服务环境中有多个应用程序服务。我们称它们为A、B和C。
我在应用程序服务环境所在的同一个VNet中也有一个Azure Api Management。
我需要的是让Api Management到达A、B和C。我还需要在App Service A和B之间进行通信。
这可以在不使用自己的DNS服务器的情况下完成吗?如果是这样的话,是怎么做的?
我有跟踪装置。
网络A Nginx / SSL
网络B App1/preprod (环斗篷预preprod、野蝇 preprod、数据库preprod)
网络C Nginx /SSL
网络D app1/测试(键盘斗篷测试、野战测试、数据库测试)
来文:
A <-> B
A <-> C
C <-> D
我试图:
NGINX A -> APP 1 preprod --- that is ok
NGINX A -> NGINX C -> APP 1 test --- that's what i am tryng to figure out