You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i have been all over google and threads and iv found little to no documentation on how to configure the snap for a ssl i already have this is what i have so far `
ProxyPassReverse / http://localhost:3000/
` i can connect to it externally now with this but i still cant get https to work, just says ERR_SSL_PROTOCOL_ERROR in browser. im using apache2 on my webserver and ubuntu. help on making it accessible at a url/rocket would be cool too
The text was updated successfully, but these errors were encountered:
i have been all over google and threads and iv found little to no documentation on how to configure the snap for a ssl i already have this is what i have so far `
ServerAdmin [email protected]
ServerName nc1.thesnipersnest.com
ErrorLog /var/log/thesnipersnest.com_error.log
TransferLog /var/log/thesnipersnest.com_access.log
LogLevel info
SSLEngine On
#SSLCertificateFile /etc/letsencrypt/live/thesnipersnest/cert.crt
#SSLCertificateKeyFile /etc/letsencrypt/live/thesnipersnest/privkey.key
#SSLCertificateChainFile /etc/letsencrypt/live/thesnipersnest/chain.pem
ServerAlias www.thesnipersnest.com
Order allow,deny Allow from allInclude /etc/letsencrypt/options-ssl-apache.conf
SSLCertificateFile /etc/letsencrypt/live/thesnipersnest.com/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/thesnipersnest.com/privkey.pem
SSLCertificateChainFile /etc/letsencrypt/live/thesnipersnest.com/chain.pem
RewriteEngine On
RewriteCond %{HTTP:Upgrade} =websocket [NC]
RewriteRule /(.) ws://localhost:3000/$1 [P,L]
RewriteCond %{HTTP:Upgrade} !=websocket [NC]
RewriteRule /(.) http://localhost:3000/$1 [P,L]
ProxyPassReverse / http://localhost:3000/
` i can connect to it externally now with this but i still cant get https to work, just says ERR_SSL_PROTOCOL_ERROR in browser. im using apache2 on my webserver and ubuntu. help on making it accessible at a url/rocket would be cool too
The text was updated successfully, but these errors were encountered: