mirror of
https://github.com/CloudDelphi/Virtual-File-System
synced 2025-12-19 18:03:49 +01:00
13 lines
318 B
Plaintext
13 lines
318 B
Plaintext
server {
|
|
#listen 80 default;
|
|
#server_name localhost;
|
|
#deny all;
|
|
access_log off;
|
|
|
|
location / {
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
proxy_set_header Host $host;
|
|
proxy_pass http://127.0.0.1:8080;
|
|
}
|
|
} |