Skip to content

Instantly share code, notes, and snippets.

@0q98ahdsg3987y1h987y
Created May 9, 2020 13:56
Show Gist options
  • Save 0q98ahdsg3987y1h987y/2707aed53885d67ccd8723645c1b08ac to your computer and use it in GitHub Desktop.
Save 0q98ahdsg3987y1h987y/2707aed53885d67ccd8723645c1b08ac to your computer and use it in GitHub Desktop.
socket io + apache2 config
<IfModule mod_ssl.c>
<VirtualHost *:443>
ServerAdmin [email protected]
ServerName example.com
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
RewriteEngine On
RewriteCond %{REQUEST_URI} ^/socket.io [NC]
RewriteCond %{QUERY_STRING} transport=websocket [NC]
RewriteRule /(.*) ws://localhost:8443/$1 [P,L]
ProxyPass /socket.io http://localhost:8443/socket.io
ProxyPassReverse /socket.io http://localhost:8443/socket.io
SSLCertificateFile /path/to/fullchain.pem
SSLCertificateKeyFile /path/to/privkey.pem
Include /etc/letsencrypt/options-ssl-apache.conf
</VirtualHost>
</IfModule>
<VirtualHost *:80>
ServerAdmin [email protected]
ServerName example.com
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
RewriteEngine on
RewriteCond %{SERVER_NAME} =example.com
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent]
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment