Created
October 26, 2019 03:15
-
-
Save brunurd/cba28487ee5f400f101b95f1a9376a82 to your computer and use it in GitHub Desktop.
apache vhost example
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> | |
DocumentRoot "files\path\here" | |
ServerName url.here.com | |
ServerAlias www.url.here.com | |
<Directory "files\path\here"> | |
Require all granted | |
Options Indexes FollowSymLinks MultiViews | |
AllowOverride All | |
Order allow,deny | |
allow from all | |
<Files "php-cgi.exe"> | |
Allow from all | |
</Files> | |
</Directory> | |
</VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment