mirror of https://github.com/doccano/doccano.git
pythondatasetsactive-learningtext-annotationdatasetnatural-language-processingdata-labelingmachine-learningannotation-tool
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.2 KiB
52 lines
1.2 KiB
server {
|
|
listen 80;
|
|
charset utf-8;
|
|
client_max_body_size 100M;
|
|
add_header X-Frame-Options DENY;
|
|
add_header X-Content-Type-Options nosniff;
|
|
add_header X-XSS-Protection "1; mode=block";
|
|
|
|
location / {
|
|
root /var/www/html;
|
|
try_files $uri /index.html;
|
|
}
|
|
|
|
location /v1/ {
|
|
proxy_pass http://backend:8000/v1/;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
proxy_set_header Host $host;
|
|
proxy_redirect off;
|
|
proxy_read_timeout 300;
|
|
}
|
|
|
|
location /admin/ {
|
|
proxy_pass http://backend:8000/admin/;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
proxy_set_header Host $host;
|
|
proxy_redirect off;
|
|
}
|
|
|
|
location = /admin {
|
|
absolute_redirect off;
|
|
return 301 /admin/;
|
|
}
|
|
|
|
location /swagger/ {
|
|
proxy_pass http://backend:8000/swagger/;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
proxy_set_header Host $host;
|
|
proxy_redirect off;
|
|
}
|
|
|
|
location = /swagger {
|
|
absolute_redirect off;
|
|
return 301 /swagger/;
|
|
}
|
|
|
|
location /static/ {
|
|
autoindex on;
|
|
alias /static/;
|
|
}
|
|
}
|
|
|
|
server_tokens off;
|