Skip to content

Instantly share code, notes, and snippets.

@njlg
Last active December 11, 2015 04:29
Show Gist options
  • Save njlg/4545575 to your computer and use it in GitHub Desktop.
Save njlg/4545575 to your computer and use it in GitHub Desktop.
Apache configuration for travis-ci build
ServerRoot "/usr/lib/apache2"
ErrorLog ${APACHE_LOG_DIR}/error.log
LogLevel debug
CustomLog ${APACHE_LOG_DIR}/access.log combined
<VirtualHost *:80>
ServerAdmin web@localhost
DocumentRoot PATH
<Directory />
Options FollowSymLinks
AllowOverride All
</Directory>
<Directory PATH >
Options Indexes FollowSymLinks MultiViews
AllowOverride All
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