This commit is contained in:
hailin 2025-07-28 15:11:00 +08:00
parent f6b816ae8f
commit ee3c273231
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
server {
listen 80 default_server;
server_name _;
location / {
proxy_pass http://127.0.0.1:10000;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}