You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
858 B
Plaintext
36 lines
858 B
Plaintext
server {
|
|
listen 80;
|
|
server_name _ default;
|
|
return 404;
|
|
}
|
|
|
|
server {
|
|
listen 80;
|
|
server_name ${CVAT_HOST};
|
|
|
|
proxy_pass_header X-CSRFToken;
|
|
proxy_set_header Host $http_host;
|
|
proxy_pass_header Set-Cookie;
|
|
|
|
location ~* /api/.*|git/.*|analytics/.*|static/.*|admin|admin/.*|documentation/.* {
|
|
proxy_pass http://cvat:8080;
|
|
}
|
|
|
|
# workaround for match location by arguments
|
|
location = / {
|
|
error_page 418 = @annotation_ui;
|
|
|
|
if ( $query_string ~ "^id=\d+.*" ) { return 418; }
|
|
proxy_pass http://cvat_ui;
|
|
}
|
|
|
|
location / {
|
|
proxy_pass http://cvat_ui;
|
|
}
|
|
|
|
# old annotation ui, will be removed in the future.
|
|
location @annotation_ui {
|
|
proxy_pass http://cvat:8080;
|
|
}
|
|
}
|