2bcab5d098
- moved all server related things into the folder `server`, so this configuration is parallel to the client. - All main "services" are now folders in the root directory - Added Dockerfiles to each service (currently server and client) - Added a docker compose configuration to start everything together. Currently there are heavy dependencies into https://github.com/OpenSlides/openslides-docker-compose - Resturctured the .gitignore. If someone needs something excluded, please add it to the right section. - Added initial build setup with Docker and docker-compose. - removed setup.py. We won't deliver OpenSlides via pip anymore.
57 lines
1.4 KiB
Nginx Configuration File
57 lines
1.4 KiB
Nginx Configuration File
worker_processes auto;
|
|
|
|
events {
|
|
worker_connections 32000;
|
|
}
|
|
|
|
http {
|
|
server {
|
|
listen 80;
|
|
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 /apps {
|
|
proxy_pass http://server:8000;
|
|
}
|
|
location /media/ {
|
|
proxy_pass http://media:8000;
|
|
}
|
|
location /rest {
|
|
proxy_pass http://server:8000;
|
|
}
|
|
location /ws {
|
|
proxy_pass http://server:8000;
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header Connection "Upgrade";
|
|
}
|
|
location /server-version.txt {
|
|
proxy_pass http://server:8000;
|
|
}
|
|
|
|
location = /basic_status {
|
|
stub_status;
|
|
}
|
|
|
|
location / {
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
|
|
}
|
|
}
|