我有一个带有nginx的Web服务器,我需要配置ajenti以像子域一样打开:
https://ajenti.mydomain.com/
这可能吗?谢谢!
最佳答案
您是否在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;
}
...
}