Changes between Version 6 and Version 7 of ethercalc
- Timestamp:
- May 8, 2021, 9:16:35 PM (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ethercalc
v6 v7 18 18 19 19 {{{ 20 <VirtualHost 209.234.253.233:443>20 <VirtualHost *:443> 21 21 # web config for calc.mayfirst.org 22 22 ServerName calc.mayfirst.org … … 31 31 SSLEngine On 32 32 SSLProxyEngine On 33 33 SSLCertificateFile /etc/letsencrypt/live/calc.mayfirst.org/fullchain.pem 34 34 SSLCertificateKeyFile /etc/letsencrypt/live/calc.mayfirst.org/privkey.pem 35 35 36 ProxyPreserveHost On 36 37 ProxyRequests off 37 38 ProxyPass / http://localhost:8000/ 38 39 ProxyPassReverse / http://localhost:8000/ 40 41 # Set up websockets to work through the proxy 42 RewriteEngine On 43 RewriteCond %{REQUEST_URI} ^/socket.io [NC] 44 RewriteCond %{QUERY_STRING} transport=websocket [NC] 45 RewriteRule /(.*) ws://localhost:8000/$1 [P,L] 46 47 # Set up an alias for static files. Saves having to serve them from node.js 48 Alias /static /home/calc/node_modules/ethercalc/static 49 Alias /l10n /home/calc/node_modules/ethercalc/l10n 50 Alias /images /hoe/calc/node_modules/ethercalc/images 51 52 ErrorLog /var/log/apache2/calc.error.log 53 CustomLog /var/log/apache2/calc.log combined 54 39 55 </VirtualHost> 40 56 }}}