Skip to content

Instantly share code, notes, and snippets.

@MaximStrutinskiy
Last active September 12, 2017 16:37
Show Gist options
  • Save MaximStrutinskiy/3cead95a23821f2457ec3b4c421abf98 to your computer and use it in GitHub Desktop.
Save MaximStrutinskiy/3cead95a23821f2457ec3b4c421abf98 to your computer and use it in GitHub Desktop.
<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