mirror of
https://github.com/Dispatcharr/Dispatcharr.git
synced 2026-01-23 02:35:14 +00:00
Added back reverted file
This commit is contained in:
parent
857d62db28
commit
51df25b9b0
1 changed files with 15 additions and 0 deletions
15
docker/nginx.conf
Normal file
15
docker/nginx.conf
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
server {
|
||||
listen 9191;
|
||||
server_name yourdomain.com;
|
||||
|
||||
location /static/ {
|
||||
root /app; # Base directory for static files
|
||||
}
|
||||
|
||||
location / {
|
||||
proxy_pass http://127.0.0.1:5656;
|
||||
proxy_set_header Host $host;
|
||||
proxy_set_header X-Real-IP $remote_addr;
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue