mirror of
https://github.com/aljazceru/CTFd.git
synced 2025-12-17 05:54:19 +01:00
52 lines
1.1 KiB
Plaintext
52 lines
1.1 KiB
Plaintext
worker_processes 4;
|
|
|
|
events {
|
|
|
|
worker_connections 1024;
|
|
}
|
|
|
|
http {
|
|
|
|
# Configuration containing list of application servers
|
|
upstream app_servers {
|
|
|
|
server ctfd:8000;
|
|
}
|
|
|
|
server {
|
|
|
|
listen 80;
|
|
|
|
gzip on;
|
|
|
|
client_max_body_size 4G;
|
|
|
|
# Handle Server Sent Events for Notifications
|
|
location /events {
|
|
|
|
proxy_pass http://app_servers;
|
|
proxy_set_header Connection '';
|
|
proxy_http_version 1.1;
|
|
chunked_transfer_encoding off;
|
|
proxy_buffering off;
|
|
proxy_cache off;
|
|
proxy_redirect off;
|
|
proxy_set_header Host $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-Host $server_name;
|
|
}
|
|
|
|
# Proxy connections to the application servers
|
|
location / {
|
|
|
|
proxy_pass http://app_servers;
|
|
proxy_redirect off;
|
|
proxy_set_header Host $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-Host $server_name;
|
|
}
|
|
}
|
|
}
|