14 lines
377 B
Plaintext
14 lines
377 B
Plaintext
|
|
server {
|
||
|
|
listen 80;
|
||
|
|
server_name mark.cloud-xl.top;
|
||
|
|
|
||
|
|
location / {
|
||
|
|
proxy_pass http://host.docker.internal:3001;
|
||
|
|
proxy_http_version 1.1;
|
||
|
|
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;
|
||
|
|
}
|
||
|
|
}
|