1
0
mirror of https://github.com/dani/vroom.git synced 2024-06-28 01:39:29 +02:00

Adapt httpd sample conf to work with the new hypnotoad way

This commit is contained in:
Daniel Berteaud 2014-10-12 19:35:24 +02:00
parent cf3e6a28b1
commit 867df625e8
2 changed files with 16 additions and 4 deletions

View File

@ -15,14 +15,19 @@ ProxyPassReverse /socket.io/ http://localhost:8888/socket.io/
# ProxyPass /etherpad/ http://localhost:9001/
# ProxyPassReverse /etherpad/ http://localhost:9001/
AliasMatch ^/vroom/([a-z]{2}/)?(\d{10}/)?((js|css|img|fonts|snd)/.*) /opt/vroom/public/$3
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^/vroom/([a-z]{2}/)?(\d{10}/)?(js|css|img|fonts|snd)/(.*)$ /vroom/$3/$4 [L]
ScriptAlias /vroom /opt/vroom/public/vroom.pl
ProxyPass /vroom/ http://127.0.0.1:8090/
ProxyPassReverse /vroom/ http://127.0.0.1:8090/
<Proxy /vroom/*>
ProxyPreserveHost On
</Proxy>
<Directory /opt/vroom>
SSLRequireSSL on
require all granted
</Directory>
<Location />
<IfModule mod_deflate.c>
AddOutputFilterByType DEFLATE text/html text/plain text/xml text/javascript text/css
SetOutputFilter DEFLATE

View File

@ -26,13 +26,20 @@
# ProxyPassReverse /etherpad/ http://localhost:9001/
AliasMatch ^/([a-z]{2}/)?(\d{10}/)?((js|css|img|fonts|snd)/.*) /opt/vroom/public/$3
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^/([a-z]{2}/)?(\d{10}/)?(js|css|img|fonts|snd)/(.*)$ /$3/$4 [L]
ScriptAlias / /opt/vroom/public/vroom.pl/
ProxyPass / http://127.0.0.1:8090/
ProxyPassReverse / http://127.0.0.1:8090/
<Proxy *>
ProxyPreserveHost On
</Proxy>
<Directory /opt/devroom/public>
Require all granted
SSLRequireSSL on
</Directory>
<Location />
require all granted
<IfModule mod_deflate.c>
AddOutputFilterByType DEFLATE text/html text/plain text/xml text/javascript text/css
SetOutputFilter DEFLATE