在Web服务器上使用类似子域的ajenti

时间:2014-08-27 03:15:17

标签: nginx dns subdomain config

我有一个带有nginx的网络服务器,我需要将ajenti配置为像子域一样打开,如下所示:

https://ajenti.mydomain.com/

这可能吗?谢谢!

1 个答案:

答案 0 :(得分:0)

你在nginx-config中试过这个吗? 它帮助了我...只需用ajenti查找nginx反向代理。这也许有帮助。

server {

        listen 443;

        ...

        location / {
                proxy_pass https://127.0.0.1:8000;
                proxy_set_header  X-Real-IP  $remote_addr;
                proxy_set_header  X-Forwarded-For $proxy_add_x_forwarded_for;
        }

        ...

}