Skip to content

Instantly share code, notes, and snippets.

View coeneivan's full-sized avatar
🧉

Ivan Coene coeneivan

🧉
View GitHub Profile
@coeneivan
coeneivan / wordpress.local
Created November 17, 2020 00:31 — forked from nicolasramy/wordpress.local
Simple Apache2 Virtual Host for WordPress
<VirtualHost *:80>
ServerAdmin nicolas.ramy@hostname.com
ServerName wordpress.local
# Indexes + Directory Root.
DirectoryIndex index.php index.html
DocumentRoot /var/www/workspace/wordpress/
# BEGIN WordPress
<IfModule mod_rewrite.c>