Skip to content

Instantly share code, notes, and snippets.

@lshaf
Last active March 9, 2020 16:48
Show Gist options
  • Save lshaf/f7028e88ffc49a173f3e to your computer and use it in GitHub Desktop.
Save lshaf/f7028e88ffc49a173f3e to your computer and use it in GitHub Desktop.
vhost configuration
<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