|
QuickBuild2 Documentation
|
IntroductionYou may want to run your QuickBuild instance behind Apache for some reasons. To do so, the following situations are assumed:
Configure your apacheCreate a file named build.example.com.conf at your apache configurations directory: your_apache_home/conf/sites-available and edit it by adding below lines: <VirtualHost *:80>
ServerName build.example.com
ErrorLog /var/log/apache2/error-quickbulid2.log
LogLevel warn
ProxyRequests Off
ProxyPreserveHost On
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
ProxyPass / http://localhost:8810/
ProxyPassReverse / http://localhost:8810/
<Location />
Order allow,deny
Allow from all
</Location>
</VirtualHost>
Then, we can enable this configuration and restart the apache server: # a2ensite build.example.com.conf # /etc/init.d/apache2 reload That is it. |