This repository has been archived on 2026-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
RepApp/nginx.default

19 lines
377 B
Text
Raw Permalink Normal View History

2023-04-17 18:57:55 +00:00
server {
listen 8020;
server_name example.org;
2023-04-21 17:09:48 +00:00
client_max_body_size 20M;
2023-04-17 18:57:55 +00:00
location / {
proxy_pass http://127.0.0.1:8010;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
location /static {
root /opt/app/rc_hip;
}
2023-04-21 16:24:31 +00:00
location /media {
root /opt/app/rc_hip;
}
2023-04-17 18:57:55 +00:00
}