2021-07-20 18:27:39 +00:00
|
|
|
server_tokens off;
|
|
|
|
proxy_cache_path /var/cache/nginx levels=1:2 keys_zone=STATIC:10m inactive=24h max_size=1g;
|
|
|
|
proxy_connect_timeout 1s;
|
|
|
|
|
|
|
|
server {
|
|
|
|
listen 80 default;
|
|
|
|
listen [::]:80 default;
|
|
|
|
|
2021-09-05 03:23:55 +00:00
|
|
|
include fic-auth.conf;
|
|
|
|
|
2021-07-20 18:27:39 +00:00
|
|
|
root ${PATH_STATIC};
|
|
|
|
|
|
|
|
error_page 401 /welcome.html;
|
|
|
|
error_page 403 404 /e404.html;
|
|
|
|
error_page 413 404 /e413.html;
|
|
|
|
error_page 500 502 504 /e500.html;
|
|
|
|
|
2021-07-21 10:30:51 +00:00
|
|
|
error_page 401 /welcome.html;
|
|
|
|
error_page 403 404 /e404.html;
|
|
|
|
error_page 413 /e413.html;
|
|
|
|
error_page 500 502 504 /e500.html;
|
|
|
|
|
|
|
|
add_header Strict-Transport-Security max-age=31536000;
|
|
|
|
add_header X-Frame-Options deny;
|
|
|
|
add_header Content-Security-Policy "script-src 'unsafe-inline' 'self' 'unsafe-eval'; img-src 'self' data:; style-src 'unsafe-inline' 'self'; font-src 'self'; default-src 'self'";
|
|
|
|
add_header X-Xss-Protection "1; mode=block";
|
|
|
|
add_header X-Content-Type-Options nosniff;
|
|
|
|
add_header Referrer-Policy strict-origin;
|
|
|
|
add_header Feature-Policy "accelerometer 'none'; ambient-light-sensor 'none'; autoplay 'none'; battery 'none'; camera 'none'; display-capture 'none'; document-domain 'none'; encrypted-media 'none'; fullscreen 'none'; geolocation 'none'; gyroscope 'none'; magnetometer 'none'; microphone 'none'; midi 'none'; payment 'none'; picture-in-picture 'none'; speaker 'none'; sync-xhr 'none'; usb 'none'; vr 'none'; wake-lock 'none'; xr-spatial-tracking 'none'";
|
|
|
|
|
2021-07-20 18:27:39 +00:00
|
|
|
location = / {
|
2021-09-05 03:23:55 +00:00
|
|
|
include fic-get-team.conf;
|
2021-07-20 18:27:39 +00:00
|
|
|
}
|
|
|
|
location = /index.html {
|
2021-09-05 03:23:55 +00:00
|
|
|
include fic-get-team.conf;
|
2021-07-20 18:27:39 +00:00
|
|
|
}
|
|
|
|
location = /welcome.html {
|
|
|
|
internal;
|
|
|
|
if ($http_accept ~ "^application/json") {
|
|
|
|
rewrite ^/(.*).html$ /$1.json;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
location = /e404.html {
|
|
|
|
internal;
|
|
|
|
if ($http_accept ~ "^application/json") {
|
|
|
|
rewrite ^/(.*).html$ /$1.json;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
location = /e413.html {
|
|
|
|
internal;
|
|
|
|
if ($http_accept ~ "^application/json") {
|
|
|
|
rewrite ^/(.*).html$ /$1.json;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
location = /e500.html {
|
|
|
|
internal;
|
|
|
|
if ($http_accept ~ "^application/json") {
|
|
|
|
rewrite ^/(.*).html$ /$1.json;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-30 17:43:35 +00:00
|
|
|
location ${FIC_BASEURL2} {
|
|
|
|
rewrite ^${FIC_BASEURL2}(.*)$ /$1;
|
2021-07-21 10:30:51 +00:00
|
|
|
}
|
|
|
|
|
2024-09-03 13:26:23 +00:00
|
|
|
location ~ ^/([A-Z]|_/) {
|
2021-09-05 03:23:55 +00:00
|
|
|
include fic-get-team.conf;
|
2021-07-20 18:27:39 +00:00
|
|
|
|
|
|
|
rewrite ^/.*$ /index.html;
|
|
|
|
}
|
2021-07-21 10:30:51 +00:00
|
|
|
|
2021-07-20 18:27:39 +00:00
|
|
|
location /edit {
|
2021-09-05 03:23:55 +00:00
|
|
|
include fic-get-team.conf;
|
2021-07-20 18:27:39 +00:00
|
|
|
|
|
|
|
rewrite ^/.*$ /index.html;
|
|
|
|
}
|
|
|
|
location /issues {
|
2021-09-05 03:23:55 +00:00
|
|
|
include fic-get-team.conf;
|
2021-07-20 18:27:39 +00:00
|
|
|
|
|
|
|
rewrite ^/.*$ /index.html;
|
|
|
|
}
|
|
|
|
location /rank {
|
2021-09-05 03:23:55 +00:00
|
|
|
include fic-get-team.conf;
|
2021-07-20 18:27:39 +00:00
|
|
|
|
|
|
|
rewrite ^/.*$ /index.html;
|
|
|
|
}
|
2021-07-21 10:30:51 +00:00
|
|
|
location /tags/ {
|
2021-09-05 03:23:55 +00:00
|
|
|
include fic-get-team.conf;
|
2021-07-20 18:27:39 +00:00
|
|
|
|
|
|
|
rewrite ^/.*$ /index.html;
|
|
|
|
}
|
2021-07-21 10:30:51 +00:00
|
|
|
location /register {
|
2021-09-05 03:23:55 +00:00
|
|
|
include fic-get-team.conf;
|
2021-07-20 18:27:39 +00:00
|
|
|
|
|
|
|
rewrite ^/.*$ /index.html;
|
|
|
|
}
|
2021-07-21 10:30:51 +00:00
|
|
|
location /rules {
|
2021-09-05 03:23:55 +00:00
|
|
|
include fic-get-team.conf;
|
2021-07-20 18:27:39 +00:00
|
|
|
|
|
|
|
rewrite ^/.*$ /index.html;
|
|
|
|
}
|
|
|
|
|
|
|
|
location /files/ {
|
|
|
|
alias ${PATH_FILES}/;
|
|
|
|
sendfile on;
|
|
|
|
tcp_nodelay on;
|
2022-11-24 13:44:17 +00:00
|
|
|
gzip_static always;
|
2021-07-20 18:27:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
location /wait.json {
|
2021-09-05 03:23:55 +00:00
|
|
|
include fic-get-team.conf;
|
2021-07-20 18:27:39 +00:00
|
|
|
|
|
|
|
root ${PATH_TEAMS}/$team/;
|
|
|
|
expires epoch;
|
|
|
|
add_header Cache-Control no-cache;
|
|
|
|
}
|
|
|
|
location /stats.json {
|
|
|
|
root ${PATH_TEAMS}/;
|
|
|
|
expires epoch;
|
|
|
|
add_header Cache-Control no-cache;
|
|
|
|
}
|
|
|
|
location /my.json {
|
2021-09-05 03:23:55 +00:00
|
|
|
include fic-get-team.conf;
|
2021-07-20 18:27:39 +00:00
|
|
|
|
|
|
|
root ${PATH_TEAMS}/$team/;
|
|
|
|
expires epoch;
|
|
|
|
add_header Cache-Control no-cache;
|
|
|
|
|
2021-07-21 10:30:51 +00:00
|
|
|
if (!-f ${PATH_STARTINGBLOCK}/started) {
|
2021-07-20 18:27:39 +00:00
|
|
|
rewrite ^/ /wait.json;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
location /issues.json {
|
2021-09-05 03:23:55 +00:00
|
|
|
include fic-get-team.conf;
|
2021-07-20 18:27:39 +00:00
|
|
|
|
|
|
|
root ${PATH_TEAMS}/$team/;
|
|
|
|
expires epoch;
|
|
|
|
add_header Cache-Control no-cache;
|
|
|
|
}
|
2022-06-06 12:40:18 +00:00
|
|
|
location /scores.json {
|
|
|
|
include fic-get-team.conf;
|
|
|
|
|
|
|
|
root ${PATH_TEAMS}/$team/;
|
|
|
|
expires epoch;
|
|
|
|
add_header Cache-Control no-cache;
|
|
|
|
}
|
2021-07-20 18:27:39 +00:00
|
|
|
location /teams.json {
|
|
|
|
root ${PATH_TEAMS};
|
|
|
|
expires epoch;
|
|
|
|
add_header Cache-Control no-cache;
|
|
|
|
}
|
|
|
|
location /themes.json {
|
2023-07-28 08:34:56 +00:00
|
|
|
include fic-get-team.conf;
|
|
|
|
|
2021-07-20 18:27:39 +00:00
|
|
|
root ${PATH_TEAMS};
|
|
|
|
expires epoch;
|
|
|
|
add_header Cache-Control no-cache;
|
2023-07-28 08:34:56 +00:00
|
|
|
|
|
|
|
if (!-f ${PATH_TEAMS}/$team/my.json) {
|
|
|
|
rewrite ^/ /themes-wait.json break;
|
|
|
|
}
|
2021-07-20 18:27:39 +00:00
|
|
|
}
|
2022-05-01 20:33:59 +00:00
|
|
|
location /challenge.json {
|
|
|
|
root ${PATH_SETTINGS}/;
|
|
|
|
expires epoch;
|
|
|
|
add_header X-FIC-time $msec;
|
|
|
|
add_header Cache-Control no-cache;
|
|
|
|
}
|
2021-07-20 18:27:39 +00:00
|
|
|
location /settings.json {
|
|
|
|
root ${PATH_SETTINGS}/;
|
|
|
|
expires epoch;
|
|
|
|
add_header X-FIC-time $msec;
|
|
|
|
add_header Cache-Control no-cache;
|
|
|
|
}
|
|
|
|
|
|
|
|
location /submit/ {
|
2021-09-05 03:23:55 +00:00
|
|
|
include fic-get-team.conf;
|
2021-07-20 18:27:39 +00:00
|
|
|
|
2023-07-09 18:40:53 +00:00
|
|
|
proxy_pass http://${HOST_RECEIVER}/submission/;
|
2021-07-20 18:27:39 +00:00
|
|
|
proxy_set_header X-Forwarded-For $remote_addr;
|
2021-07-21 10:30:51 +00:00
|
|
|
proxy_set_header X-FIC-Team $team;
|
2021-07-20 18:27:39 +00:00
|
|
|
proxy_redirect off;
|
|
|
|
}
|
2021-08-30 17:43:35 +00:00
|
|
|
location /issue {
|
2021-09-05 03:23:55 +00:00
|
|
|
include fic-get-team.conf;
|
2021-07-20 18:27:39 +00:00
|
|
|
|
2023-07-09 18:40:53 +00:00
|
|
|
proxy_pass http://${HOST_RECEIVER};
|
2021-07-21 10:30:51 +00:00
|
|
|
proxy_set_header X-Forwarded-For $remote_addr;
|
|
|
|
proxy_set_header X-FIC-Team $team;
|
|
|
|
proxy_redirect off;
|
|
|
|
}
|
2021-08-30 17:43:35 +00:00
|
|
|
location /chname {
|
2021-09-05 03:23:55 +00:00
|
|
|
include fic-get-team.conf;
|
2021-07-20 18:27:39 +00:00
|
|
|
|
2023-07-09 18:40:53 +00:00
|
|
|
proxy_pass http://${HOST_RECEIVER};
|
2021-07-20 18:27:39 +00:00
|
|
|
proxy_set_header X-Forwarded-For $remote_addr;
|
2021-07-21 10:30:51 +00:00
|
|
|
proxy_set_header X-FIC-Team $team;
|
2021-07-20 18:27:39 +00:00
|
|
|
proxy_redirect off;
|
|
|
|
}
|
|
|
|
location /registration {
|
2021-09-05 03:23:55 +00:00
|
|
|
include fic-get-team.conf;
|
2021-07-20 18:27:39 +00:00
|
|
|
|
2023-07-09 18:40:53 +00:00
|
|
|
proxy_pass http://${HOST_RECEIVER};
|
2021-07-20 18:27:39 +00:00
|
|
|
proxy_set_header X-Forwarded-For $remote_addr;
|
2021-07-21 10:30:51 +00:00
|
|
|
proxy_set_header X-FIC-Team $team;
|
2021-07-20 18:27:39 +00:00
|
|
|
proxy_redirect off;
|
|
|
|
}
|
2023-11-04 20:14:16 +00:00
|
|
|
location /reset_progress {
|
|
|
|
include fic-get-team.conf;
|
|
|
|
|
|
|
|
proxy_pass http://${HOST_RECEIVER};
|
|
|
|
proxy_set_header X-Forwarded-For $remote_addr;
|
|
|
|
proxy_set_header X-FIC-Team $team;
|
|
|
|
proxy_redirect off;
|
|
|
|
}
|
2021-07-21 10:30:51 +00:00
|
|
|
location /openhint/ {
|
2021-09-05 03:23:55 +00:00
|
|
|
include fic-get-team.conf;
|
2021-07-20 18:27:39 +00:00
|
|
|
|
2023-07-09 18:40:53 +00:00
|
|
|
proxy_pass http://${HOST_RECEIVER};
|
2021-07-21 10:30:51 +00:00
|
|
|
proxy_set_header X-Forwarded-For $remote_addr;
|
|
|
|
proxy_set_header X-FIC-Team $team;
|
|
|
|
proxy_redirect off;
|
|
|
|
}
|
|
|
|
location /wantchoices/ {
|
2021-09-05 03:23:55 +00:00
|
|
|
include fic-get-team.conf;
|
2021-07-20 18:27:39 +00:00
|
|
|
|
2023-07-09 18:40:53 +00:00
|
|
|
proxy_pass http://${HOST_RECEIVER};
|
2021-07-21 10:30:51 +00:00
|
|
|
proxy_set_header X-Forwarded-For $remote_addr;
|
|
|
|
proxy_set_header X-FIC-Team $team;
|
|
|
|
proxy_redirect off;
|
|
|
|
}
|
2021-07-20 18:27:39 +00:00
|
|
|
|
2023-07-10 10:25:17 +00:00
|
|
|
location /api {
|
2021-09-05 03:23:55 +00:00
|
|
|
include fic-get-team.conf;
|
2021-07-20 18:27:39 +00:00
|
|
|
|
2023-07-10 10:25:17 +00:00
|
|
|
proxy_pass http://${HOST_ADMIN}${FIC_BASEURL}admin/api;
|
2021-07-20 18:27:39 +00:00
|
|
|
proxy_set_header X-Forwarded-For $remote_addr;
|
2021-07-21 10:30:51 +00:00
|
|
|
proxy_set_header X-FIC-Team $team;
|
2021-07-20 18:27:39 +00:00
|
|
|
proxy_redirect off;
|
|
|
|
}
|
|
|
|
|
2023-07-10 10:25:17 +00:00
|
|
|
location ${FIC_BASEURL}admin {
|
2021-07-21 10:30:51 +00:00
|
|
|
proxy_pass http://${HOST_ADMIN};
|
2021-07-20 18:27:39 +00:00
|
|
|
proxy_set_header X-Forwarded-For $remote_addr;
|
|
|
|
proxy_redirect off;
|
|
|
|
}
|
|
|
|
|
2023-07-10 10:25:17 +00:00
|
|
|
location ${FIC_BASEURL}admin/api {
|
2023-07-10 10:19:11 +00:00
|
|
|
proxy_pass http://${HOST_ADMIN};
|
|
|
|
proxy_read_timeout 400s;
|
|
|
|
proxy_set_header X-Forwarded-For $remote_addr;
|
|
|
|
}
|
|
|
|
|
2023-07-10 10:25:17 +00:00
|
|
|
location ${FIC_BASEURL}qa {
|
2021-09-05 03:23:55 +00:00
|
|
|
include fic-get-team.conf;
|
2021-07-20 18:27:39 +00:00
|
|
|
|
2021-07-21 10:30:51 +00:00
|
|
|
proxy_pass http://${HOST_QA};
|
2021-07-20 18:27:39 +00:00
|
|
|
proxy_set_header X-Forwarded-For $remote_addr;
|
2021-07-21 10:30:51 +00:00
|
|
|
proxy_set_header X-FIC-Team $team;
|
2021-07-20 18:27:39 +00:00
|
|
|
proxy_redirect off;
|
|
|
|
}
|
|
|
|
|
2023-07-10 10:25:17 +00:00
|
|
|
location ${FIC_BASEURL}dashboard {
|
2021-09-05 03:23:55 +00:00
|
|
|
include fic-get-team.conf;
|
2021-07-21 10:30:51 +00:00
|
|
|
|
|
|
|
proxy_pass http://${HOST_DASHBOARD};
|
2021-07-20 18:27:39 +00:00
|
|
|
proxy_set_header X-Forwarded-For $remote_addr;
|
2021-07-21 10:30:51 +00:00
|
|
|
proxy_set_header X-FIC-Team $team;
|
2021-07-20 18:27:39 +00:00
|
|
|
proxy_redirect off;
|
|
|
|
}
|
|
|
|
|
|
|
|
location = /events.json {
|
|
|
|
proxy_pass http://${HOST_ADMIN}/api/events/;
|
|
|
|
proxy_method GET;
|
|
|
|
proxy_pass_request_body off;
|
|
|
|
proxy_set_header Content-Length "";
|
|
|
|
proxy_set_header X-Forwarded-For $remote_addr;
|
|
|
|
proxy_redirect off;
|
|
|
|
proxy_cache STATIC;
|
|
|
|
proxy_cache_valid 3s;
|
|
|
|
}
|
|
|
|
}
|