Created
July 21, 2018 14:04
-
-
Save davletyarov/8ed8eb71475a90b826b5ea65e418a0b8 to your computer and use it in GitHub Desktop.
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> | |
ServerName dev.local | |
ServerAdmin dev@localhost | |
DocumentRoot /home/ruzel/www/dev.local | |
LogLevel debug | |
ErrorLog /home/ruzel/www/dev.local/error.log | |
CustomLog /home/ruzel/www/dev.local/access.log combined | |
<Directory /home/ruzel/www/dev.local> | |
Options Indexes FollowSymLinks MultiViews | |
AllowOverride All | |
Order allow,deny | |
allow from all | |
Require all granted | |
</Directory> | |
<IfModule mod_php7.c> | |
#php_admin_value mbstring.func_overload 2 | |
</IfModule> | |
</VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment