mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-11 10:25:52 +02:00
17 lines
390 B
Text
17 lines
390 B
Text
server {
|
|
listen {{ http_listen_port }};
|
|
listen [::]:{{ http_listen_port }};
|
|
|
|
server_name {{ server_name }};
|
|
|
|
root ;
|
|
|
|
index ;
|
|
|
|
location /.well-known {
|
|
proxy_set_header Host $host;
|
|
proxy_set_header X-Real_IP $remote_addr;
|
|
proxy_set_header X-Forwarded-For $remote_addr:$remote_port;
|
|
proxy_pass http://127.0.0.1:{{ HTTP01PORT }};
|
|
}
|
|
}
|