38 lines
1.1 KiB
Plaintext
38 lines
1.1 KiB
Plaintext
server {
|
|
listen 80;
|
|
|
|
server_name ffplayout.local;
|
|
|
|
gzip on;
|
|
gzip_types text/plain application/xml text/css application/javascript;
|
|
gzip_min_length 1000;
|
|
|
|
charset utf-8;
|
|
|
|
client_max_body_size 7000M; # should be desirable value
|
|
|
|
add_header X-Frame-Options SAMEORIGIN;
|
|
add_header X-Content-Type-Options nosniff;
|
|
add_header X-XSS-Protection "1; mode=block";
|
|
add_header Strict-Transport-Security "max-age=31536000; includeSubDomains; preload" always;
|
|
|
|
location / {
|
|
proxy_set_header Host $http_host;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
proxy_set_header X-Forwarded-Proto $scheme;
|
|
proxy_read_timeout 36000s;
|
|
proxy_connect_timeout 36000s;
|
|
proxy_send_timeout 36000s;
|
|
proxy_buffer_size 128k;
|
|
proxy_buffers 4 256k;
|
|
proxy_busy_buffers_size 256k;
|
|
send_timeout 36000s;
|
|
proxy_pass http://127.0.0.1:8787;
|
|
}
|
|
|
|
location /live/ {
|
|
alias /usr/share/ffplayout/public/live/;
|
|
}
|
|
}
|