Last active
March 9, 2020 16:48
-
-
Save lshaf/f7028e88ffc49a173f3e to your computer and use it in GitHub Desktop.
vhost configuration
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
<VirtualHost *:80> | |
ServerAdmin webmaster@localhost | |
ServerName belajar-test.dev | |
DocumentRoot D:\web-project\test.dev\frontend\web | |
<Directory D:\web-project\test.dev\frontend\web> | |
Options -Indexes +FollowSymLinks +MultiViews | |
Require all granted | |
AllowOverride all | |
Order allow,deny | |
allow from all | |
</Directory> | |
LogLevel warn | |
ErrorLog ${APACHE_LOG_DIR}/yoursite-error.log | |
CustomLog ${APACHE_LOG_DIR}/yoursite-access.log combined | |
</VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment