-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Loading status checks…
Add nginx proxy
Showing
2 changed files
with
18 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
server { | ||
listen 80; | ||
server_name localhost; | ||
|
||
location / { | ||
proxy_pass https://ntracer2.cai-lab.org/data2/; # The server to which requests are proxied | ||
proxy_set_header Host $host; # Forward the original Host header | ||
proxy_set_header X-Real-IP $remote_addr; # Forward the client’s IP address | ||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; # Forward the IP address chain | ||
proxy_set_header X-Forwarded-Proto $scheme; # Forward the original protocol (HTTP/HTTPS) | ||
} | ||
} |