add source

This commit is contained in:
lijiejie
2022-04-01 12:05:54 +08:00
parent 4c9e61f646
commit af88009d10
48 changed files with 27359 additions and 1 deletions
+18
View File
@@ -0,0 +1,18 @@
server {
listen 80;
server_name eyes.sh;
uwsgi_pass_request_headers on;
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;
}
}