Skip to content

Instantly share code, notes, and snippets.

@pixelpylon
Last active March 6, 2020 16:30
Show Gist options
  • Save pixelpylon/fbeda852cb6490a643ea4ce5fb434f3b to your computer and use it in GitHub Desktop.
Save pixelpylon/fbeda852cb6490a643ea4ce5fb434f3b to your computer and use it in GitHub Desktop.
config file for wp site on apache
<VirtualHost 127.0.0.28>
ServerName wp
ServerAdmin webmaster@localhost
DocumentRoot /mnt/g/wp
<Directory /mnt/g/wp/>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Require all granted
</Directory>
ErrorLog /mnt/g/wp/logs/error.log
CustomLog /mnt/g/wp/logs/access.log combined
</VirtualHost>
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment