Files
eyes.sh/dnslog_nginx.conf
T
2022-04-25 10:42:16 +08:00

24 lines
548 B
Plaintext

server {
listen 80;
server_name localhost $ADMIN_DOMAIN;
uwsgi_pass_request_headers on;
if ($request_uri ~* "^/$") {
return 302 $scheme://$http_host/login;
}
location = /favicon.ico {
access_log off; log_not_found off;
}
location /static/ {
alias /dnslog/static/;
}
location / {
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_pass http://127.0.0.1:8000;
}
}