Skip to content

Instantly share code, notes, and snippets.

@sketchbuch
Created December 26, 2015 23:00
Show Gist options
  • Save sketchbuch/92e8d607d2b3a1563880 to your computer and use it in GitHub Desktop.
Save sketchbuch/92e8d607d2b3a1563880 to your computer and use it in GitHub Desktop.
NEOS - Neos CMS vhost
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