Created
December 26, 2015 23:00
-
-
Save sketchbuch/92e8d607d2b3a1563880 to your computer and use it in GitHub Desktop.
NEOS - Neos CMS vhost
This file contains 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
NameVirtualHost *:80 | |
<VirtualHost *:80> | |
ServerName neos.t3local | |
SetEnv FLOW_CONTEXT Development | |
ServerAlias www.neos.t3local | |
DocumentRoot /var/www/neos/Neos-2.1/Web | |
<Directory ~ "/var/www/neos/Neos-2.1/"> | |
Options Indexes FollowSymlinks MultiViews | |
AllowOverride All | |
Require all granted | |
<FilesMatch "\.php$"> | |
Require all granted | |
</FilesMatch> | |
</Directory> | |
</VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment