mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-07-27 02:31:10 +02:00
61 lines
1.7 KiB
Django/Jinja
61 lines
1.7 KiB
Django/Jinja
server {
|
|
server_name {{domain}};
|
|
|
|
{% include 'roles/srv-web-7-7-letsencrypt/templates/ssl_header.j2' %}
|
|
|
|
{% include 'roles/srv-web-7-7-inj-compose/templates/server.conf.j2'%}
|
|
|
|
{% include 'roles/srv-proxy-7-4-core/templates/headers/content_security_policy.conf.j2' %}
|
|
|
|
##
|
|
# Application
|
|
##
|
|
|
|
{% set location = "@html" %}
|
|
{% include 'roles/srv-proxy-7-4-core/templates/location/html.conf.j2' %}
|
|
|
|
location / {
|
|
try_files /dev/null {{ location }};
|
|
}
|
|
|
|
location = /api/v1/videos/upload-resumable {
|
|
client_max_body_size 0;
|
|
proxy_request_buffering off;
|
|
|
|
try_files /dev/null {{ location }};
|
|
}
|
|
|
|
location ~ ^/api/v1/videos/(upload|([^/]+/studio/edit))$ {
|
|
limit_except POST HEAD { deny all; }
|
|
client_max_body_size 12G; # default is 1M
|
|
add_header X-File-Maximum-Size 8G always; # inform backend of the set value in bytes before mime-encoding (x * 1.4 >= client_max_body_size)
|
|
|
|
try_files /dev/null {{ location }};
|
|
}
|
|
|
|
location ~ ^/api/v1/(videos|video-playlists|video-channels|users/me) {
|
|
client_max_body_size 6M; # default is 1M
|
|
add_header X-File-Maximum-Size 4M always; # inform backend of the set value in bytes before mime-encoding (x * 1.4 >= client_max_body_size)
|
|
|
|
try_files /dev/null {{ location }};
|
|
}
|
|
|
|
##
|
|
# Websocket
|
|
##
|
|
|
|
{% set location_ws = "@websocket" %}
|
|
{% include 'roles/srv-proxy-7-4-core/templates/location/ws.conf.j2' %}
|
|
|
|
location /socket.io {
|
|
try_files /dev/null {{ location_ws }};
|
|
}
|
|
|
|
location /tracker/socket {
|
|
# Peers send a message to the tracker every 15 minutes
|
|
# Don't close the websocket before then
|
|
proxy_read_timeout 15m; # default is 60s
|
|
|
|
try_files /dev/null {{ location_ws }};
|
|
}
|
|
} |