Skip to content

Instantly share code, notes, and snippets.

@davletyarov
Created July 21, 2018 14:04
Show Gist options
  • Save davletyarov/8ed8eb71475a90b826b5ea65e418a0b8 to your computer and use it in GitHub Desktop.
Save davletyarov/8ed8eb71475a90b826b5ea65e418a0b8 to your computer and use it in GitHub Desktop.
<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