2020-06-18 15:22:38 +02:00
|
|
|
worker_processes auto;
|
|
|
|
|
|
|
|
events {
|
|
|
|
worker_connections 32000;
|
|
|
|
}
|
|
|
|
|
|
|
|
http {
|
|
|
|
server {
|
2021-02-05 09:47:04 +01:00
|
|
|
listen 4200;
|
2020-06-18 15:22:38 +02:00
|
|
|
server_name localhost;
|
|
|
|
|
|
|
|
root /usr/share/nginx/html;
|
|
|
|
index index.html index.htm;
|
|
|
|
include /etc/nginx/mime.types;
|
|
|
|
|
|
|
|
# Optimizations for OpenSlides
|
|
|
|
client_max_body_size 100M;
|
|
|
|
proxy_connect_timeout 300s;
|
|
|
|
proxy_read_timeout 300s;
|
|
|
|
|
|
|
|
proxy_set_header Host $http_host;
|
|
|
|
|
|
|
|
gzip on;
|
|
|
|
gzip_min_length 1000;
|
|
|
|
gzip_proxied expired no-cache no-store private auth;
|
|
|
|
gzip_types text/plain text/css application/json application/javascript application/x-javascript text/xml application/xml application/xml+rss text/javascript;
|
|
|
|
|
|
|
|
location / {
|
|
|
|
try_files $uri $uri/ /index.html;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|