48 lines
1.2 KiB
Nginx Configuration File
48 lines
1.2 KiB
Nginx Configuration File
server {
|
|
listen 80 default_server;
|
|
server_name _;
|
|
|
|
large_client_header_buffers 4 32k;
|
|
client_max_body_size 50M;
|
|
charset utf-8;
|
|
|
|
# Frontend
|
|
location / {
|
|
root /home/taiga/taiga-front-dist/dist/;
|
|
try_files $uri $uri/ /index.html;
|
|
|
|
disable_symlinks off;
|
|
}
|
|
|
|
# Backend
|
|
location /api {
|
|
proxy_set_header Host $http_host;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_set_header X-Scheme $scheme;
|
|
proxy_set_header X-Forwarded-Proto $scheme;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
proxy_pass http://127.0.0.1:8001/api;
|
|
proxy_redirect off;
|
|
}
|
|
|
|
# Django admin access (/admin/)
|
|
location /admin {
|
|
proxy_set_header Host $http_host;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_set_header X-Scheme $scheme;
|
|
proxy_set_header X-Forwarded-Proto $scheme;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
proxy_pass http://127.0.0.1:8001$request_uri;
|
|
proxy_redirect off;
|
|
}
|
|
|
|
# Static files
|
|
location /static {
|
|
alias /home/taiga/taiga-back/static;
|
|
}
|
|
|
|
# Media files
|
|
location /media {
|
|
alias /home/taiga/taiga-back/media;
|
|
}
|
|
}
|