blob: c9163793cecb53d1d7c37d1eae3081100fc7c476 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# HyBBX — nginx. Set HTTPD_DOCROOT (example: /srv/www).
location = /hybbx-websocket/ws {
proxy_pass https://127.0.0.1:4591/hybbx;
proxy_ssl_verify off;
proxy_http_version 1.1;
proxy_socket_keepalive on;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
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_read_timeout 3600s;
proxy_send_timeout 3600s;
}
location /hybbx-websocket/ {
root /srv/www;
index index.php;
location ~ \.php$ {
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_pass unix:/run/php-fpm/www.sock;
}
}
# UI: cp -r reverse-proxy/docroot/hybbx-websocket $HTTPD_DOCROOT/
# Plain ws: proxy_pass http://127.0.0.1:4591/hybbx;
|