gorillajs
Version:
A smart development environment designed to easily install and neatly manage web applications. Gorilla JS frees you from the repetitive daily tasks like apps installation, database management, creation of virtual environment, server configuration… And it
26 lines (17 loc) • 616 B
Plain Text
<VirtualHost 0.0.0.0:443>
RequestHeader set X-Forwarded-Proto "https"
ServerName {{project.domain}}
ServerAlias www.{{project.domain}}
Alias /gorilla-maintenance /var/www/localhost
DocumentRoot /var/www/localhost
<IfModule mod_ssl.c>
SSLEngine on
SSLProxyEngine On
SSLCertificateFile /root/templates/localhost.crt
SSLCertificateKeyFile /root/templates/localhost.key
</IfModule>
ProxyPreserveHost On
ProxyPass /gorilla-maintenance !
ProxyPass / http://{{project.domain}}/
ProxyPassReverse / http://{{project.domain}}/
</VirtualHost>