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
17 lines (10 loc) • 354 B
Plain Text
<VirtualHost *:80>
ServerName {{project.domain}}
ServerAlias www.{{project.domain}}
DocumentRoot /var/www/localhost
Alias /gorilla-maintenance /var/www/localhost
ProxyPreserveHost On
ProxyPass /gorilla-maintenance !
ProxyPass / http://{{project.domain}}/
ProxyPassReverse / http://{{project.domain}}/
</VirtualHost>