HAProxy Manager
Dashboard
๐ Add Domain
Domains
Frontends
Backends
Configs
Servers
ACL Rules
Certs
Gunicorn
Firewall
Check Domain
Settings
Login
๐
Frontends
โ๏ธ
Backends
๐งพ Web Server Config
Select a server to view its configuration
Server
nginx
apache
File
-- Select a config file --
api.camthis.net.conf
api.cyvoo.com.conf
appapi.cyvoo.com.conf
be.cyvoo.com.conf
haproxy.lawmatic.vn.conf
kong.cyvoo.com.conf
noviv.com.conf
All
0-9
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
View
Directory:
/etc/nginx/conf.d/
upstream socialscrape { server unix:/run/socialscrape.sock fail_timeout=0; } server { listen 127.0.0.1:80; server_name be.cyvoo.com; location / { return 301 https://$host$request_uri; } location /.well-known/acme-challenge/ { root /var/www/certbot; } } server { listen 127.0.0.1:443 ssl; http2 on; server_name be.cyvoo.com; ssl_certificate /etc/letsencrypt/live/be.cyvoo.com/fullchain.pem; ssl_certificate_key /etc/letsencrypt/live/be.cyvoo.com/privkey.pem; ssl_protocols TLSv1.2 TLSv1.3; ssl_ciphers HIGH:!aNULL:!MD5; ssl_prefer_server_ciphers on; location /static/ { alias /var/www/lawmatic/socialscrape/assets/; } location /media/ { alias /var/www/lawmatic/socialscrape/media/; } # General app proxy location / { proxy_pass http://socialscrape; 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-Proto $scheme; proxy_http_version 1.1; client_max_body_size 50M; proxy_connect_timeout 60s; proxy_read_timeout 60s; proxy_send_timeout 60s; } # SSE stream for performance dashboard location /appapi/performance/stream/ { proxy_pass http://socialscrape; proxy_http_version 1.1; # Keep the connection open and avoid buffering proxy_buffering off; proxy_read_timeout 300s; proxy_send_timeout 300s; add_header Cache-Control no-cache; add_header X-Accel-Buffering no; # Optional: avoid compression that may add latency gzip off; } }
Save
Reload