Last active
September 12, 2017 16:37
-
-
Save MaximStrutinskiy/3cead95a23821f2457ec3b4c421abf98 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 giftshere | |
DocumentRoot /home/maximstrutinskiy/Sites/giftshere/web | |
<Directory /home/maximstrutinskiy/Sites/giftshere/web> | |
AllowOverride None | |
Require all granted | |
Allow from All | |
</Directory> | |
ErrorLog /home/maximstrutinskiy/Sites/giftshere-log/error.log | |
CustomLog /home/maximstrutinskiy/Sites/giftshere-log/access.log combined | |
</VirtualHost> | |
<VirtualHost *:80> | |
ServerName giftshere-microservice | |
DocumentRoot /home/maximstrutinskiy/Sites/giftshere-microservice/web | |
<Directory /home/maximstrutinskiy/Sites/giftshere-microservice/web> | |
AllowOverride None | |
Require all granted | |
Allow from All | |
</Directory> | |
ErrorLog /home/maximstrutinskiy/Sites/giftshere-microservice-log/error.log | |
CustomLog /home/maximstrutinskiy/Sites/giftshere-microservice-log/access.log combined | |
</VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment