我刚刚在运行 nginx 的服务器上安装了 Ajenti。我已经设置了域,除 Ajenti 外,其他一切都正常。
我将此配置添加到 nginx,以访问 Ajenti:
server{
listen 80;
server_name ajenti.XY.dk;
access_log /XY/_log/ajenti.access.log;
error_log /XY/_log/ajenti.error.log;
add_header Strict-Transport-Security max-age=2592000;
location /* {
rewrite /* http://127.0.0.1:8000 permanent;
}
}
是的,我为它添加了一个指向 sites-enabled 的符号链接。但我无法从外部访问它。我在服务器上尝试了 Linx,它打开了 Ajenti,所以它正在运行。
我的配置应该做哪些更改?
答案1
使用proxy_pass
,而不是重写。