We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
0 parents commit d2ad9e3Copy full SHA for d2ad9e3
docker-compose.yml
@@ -0,0 +1,6 @@
1
+version: '3.7'
2
+services:
3
+ nginx:
4
+ image: nginx:latest
5
+ volumes:
6
+ - ./nginx.conf:/etc/nginx/nginx.conf
nginx.conf
@@ -0,0 +1,17 @@
+
+events {}
+http {
+ server {
+ listen 80;
7
+ server_name _;
8
9
+ location / {
10
+ proxy_pass http://10.37.0.37:32400; # Replace with your local IP address
11
+ proxy_set_header Host $host;
12
+ proxy_set_header X-Real-IP $remote_addr;
13
+ proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
14
+ proxy_set_header X-Forwarded-Proto $scheme;
15
+ }
16
17
+}
0 commit comments