66 lines
2.6 KiB
Plaintext
66 lines
2.6 KiB
Plaintext
map $sent_http_content_type $expires {
|
|
"text/html" 1h; # set this to your needs
|
|
"text/html; charset=utf-8" 1h; # set this to your needs
|
|
default 1d; # set this to your needs
|
|
}
|
|
|
|
server {
|
|
listen 127.0.1.4;
|
|
|
|
server_name ffplayout.local ffplayout;
|
|
|
|
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 / {
|
|
if ($http_origin ~ '^https?://(localhost|ffplayout\.local|ffplayout)') {
|
|
add_header 'Access-Control-Allow-Origin' "$http_origin" always;
|
|
add_header 'Access-Control-Allow-Credentials' 'true' always;
|
|
add_header 'Access-Control-Allow-Methods' 'GET, POST, PUT, DELETE, OPTIONS' always;
|
|
add_header 'Access-Control-Allow-Headers' 'Accept,Authorization,Cache-Control,Content-Type,DNT,If-Modified-Since,Keep-Alive,Origin,User-Agent,X-Requested-With' always;
|
|
}
|
|
|
|
if ($request_method = OPTIONS ) {
|
|
add_header 'Access-Control-Max-Age' 1728000;
|
|
add_header 'Content-Type' 'text/plain charset=UTF-8';
|
|
add_header 'Content-Length' 0;
|
|
return 204;
|
|
}
|
|
|
|
root /var/www/ffplayout/ffplayout/frontend/dist/;
|
|
|
|
}
|
|
|
|
location ~ ^/(api|admin|auth|api-auth) {
|
|
if ($http_origin ~ '^https?://(localhost|ffplayout\.local|ffplayout)') {
|
|
add_header 'Access-Control-Allow-Origin' "$http_origin" always;
|
|
add_header 'Access-Control-Allow-Credentials' 'true' always;
|
|
add_header 'Access-Control-Allow-Methods' 'GET, POST, PUT, DELETE, OPTIONS' always;
|
|
add_header 'Access-Control-Allow-Headers' 'Accept,Authorization,Cache-Control,Content-Type,DNT,If-Modified-Since,Keep-Alive,Origin,User-Agent,X-Requested-With' always;
|
|
}
|
|
|
|
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_pass http://unix:/var/www/ffplayout/ffplayout/ffplayout.sock;
|
|
}
|
|
|
|
location /static/ {
|
|
alias /var/www/ffplayout/ffplayout/static/;
|
|
}
|
|
|
|
access_log /var/log/nginx/ffplayout_access.log;
|
|
error_log /var/log/nginx/ffplayout_error.log warn;
|
|
}
|