Skip to content

Instantly share code, notes, and snippets.

@anilnautiyal
anilnautiyal / Standard VirtaulHost Conf
Last active February 13, 2020 12:59
VirtualHost Conf File
<VirtualHost *:80>
ServerName example.com
ServerAlias www.example.com
DocumentRoot /home/user/example.com/public/
<Directory /home/user/example.com/public/>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>