Created
September 10, 2012 09:33
-
-
Save awartoft/3689927 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<VirtualHost *:80> | |
ServerName github.office.pmg.se | |
# !!! Be sure to point DocumentRoot to 'public'! | |
DocumentRoot /home/gitlab/gitlab/public | |
<Directory /home/gitlab/gitlab/public> | |
AllowOverride all | |
# MultiViews must be turned off. | |
Options -MultiViews | |
</Directory> | |
# Setup alias for satis | |
Alias ^/composer/ /home/gitlab/composer | |
# Configure satis alias | |
<Directory "/home/gitlab/composer/"> | |
Order allow,deny | |
Allow from all | |
</Directory> | |
</VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment