Skip to content

Instantly share code, notes, and snippets.

@victoraguilarc
Created July 6, 2018 17:58
Show Gist options
  • Save victoraguilarc/41074ca418b106e37d9b4f53053720eb to your computer and use it in GitHub Desktop.
Save victoraguilarc/41074ca418b106e37d9b4f53053720eb to your computer and use it in GitHub Desktop.
Apache wordpress config
<VirtualHost *:80>
ServerName DOMAIN
ServerAdmin support@xiberty.com
DocumentRoot /var/www/PROJECT_FOLDER
ServerAlias www.DOMAIN
<Directory /var/www/PROJECT_FOLDER/>
Options +FollowSymlinks
AllowOverride All
Require all granted
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment