Created
June 27, 2019 14:39
-
-
Save wmandai/4ae34ca1b767b96743f893c257bbdfff to your computer and use it in GitHub Desktop.
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
Filename: /etc/apache2/sites-available/yoursite.conf | |
<VirtualHost *:80> | |
ServerAdmin [email protected] | |
ServerName yoursite.com | |
ServerAlias www.yoursite.com | |
DocumentRoot "/var/www/yoursite.com/public" | |
<Directory /var/www/yoursite.com/public> | |
Options Indexes FollowSymLinks MultiViews | |
AllowOverride All | |
Order allow,deny | |
allow from all | |
</Directory> | |
</VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment