mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
21 lines
378 B
Nginx Configuration File
21 lines
378 B
Nginx Configuration File
|
upstream inventree {
|
||
|
server inventree:8080;
|
||
|
}
|
||
|
|
||
|
server {
|
||
|
|
||
|
listen 80;
|
||
|
|
||
|
location / {
|
||
|
proxy_pass http://inventree;
|
||
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||
|
proxy_set_header Host $host;
|
||
|
proxy_redirect off;
|
||
|
client_max_body_size 100M;
|
||
|
}
|
||
|
|
||
|
location /static/ {
|
||
|
alias /home/inventree/static/;
|
||
|
}
|
||
|
|
||
|
}
|