การกำหนดค่า nginx:
เซิร์ฟเวอร์ {
ฟัง 443 ssl http2;
ฟัง [::]:443 ssl http2;
ssl_certificate /path/to/tls/tls.crt;
ssl_certificate_key /path/to/tls/tls.key;
server_name the.domain.tld;
ที่ตั้ง / {
proxy_pass http://localhost:5001;
}
ตำแหน่ง /api/ซ็อกเก็ต {
proxy_pass http://localhost:5001/api/socket;
proxy_http_version 1.1;
proxy_set_header อัพเกรด $http_upgrade;
proxy_set_header การเชื่อมต่อ "อัพเกรด";
proxy_set_header โฮสต์ $host;
}
}
การกำหนดค่า apache:
<VirtualHost *:443>
ServerName the.domain.tld
ProxyPass / http://localhost:5001/
ProxyPassReverse / http://localhost:5001/
ProxyPass /api/socket http://localhost:5001/api/socket/
ProxyPassReverse /api/socket http://localhost:5001/api/socket/
RewriteEngine on
RewriteCond %{HTTP:Upgrade} websocket [NC]
RewriteCond %{HTTP:Connection} upgrade [NC]
RewriteRule /(.*) "ws://localhost:5001/$1" [P,L]
ProxyPreserveHost On
ProxyAddHeaders On
RequestHeader set X-Forwarded-Proto "https"
SSLCertificateFile /path/to/tls/tls.crt
SSLCertificateKeyFile /path/to/tls/tls.key
SSLProxyEngine On
</VirtualHost>