mirror of
https://github.com/xiaoxinpro/nginx-proxy-manager-zh.git
synced 2025-01-24 05:38:15 -05:00
15 lines
382 B
Plaintext
15 lines
382 B
Plaintext
# Admin Interface
|
|
server {
|
|
listen 81 default;
|
|
server_name nginxproxymanager;
|
|
|
|
location / {
|
|
add_header X-Served-By $host;
|
|
proxy_set_header Host $host;
|
|
proxy_set_header X-Forwarded-Scheme $scheme;
|
|
proxy_set_header X-Forwarded-Proto $scheme;
|
|
proxy_set_header X-Forwarded-For $remote_addr;
|
|
proxy_pass http://localhost:3000/;
|
|
}
|
|
}
|