diff options
author | Jamie Nguyen <j@jamielinux.com> | 2018-07-16 11:04:01 +0100 |
---|---|---|
committer | Jamie Nguyen <j@jamielinux.com> | 2018-07-16 11:04:01 +0100 |
commit | 6e477d0a27af629be8f0fdaa3aa36e5ef9351876 (patch) | |
tree | 429ac6e3c70d99c2a9711978d86333d0222bd752 /default.conf | |
download | apache-6e477d0a27af629be8f0fdaa3aa36e5ef9351876.tar.gz apache-6e477d0a27af629be8f0fdaa3aa36e5ef9351876.tar.bz2 apache-6e477d0a27af629be8f0fdaa3aa36e5ef9351876.tar.xz apache-6e477d0a27af629be8f0fdaa3aa36e5ef9351876.zip |
Initial commit
Diffstat (limited to 'default.conf')
-rw-r--r-- | default.conf | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/default.conf b/default.conf new file mode 100644 index 0000000..e309338 --- /dev/null +++ b/default.conf @@ -0,0 +1,11 @@ +<VirtualHost *:80> + ServerName localhost + DocumentRoot "/var/www/html/" + <Directory "/var/www/html/"> + Require all denied + </Directory> + CustomLog /proc/self/fd/1 combined + ErrorLog /proc/self/fd/2 + # This lets certain DAV methods work behind an SSL reverse proxy. + RequestHeader edit Destination ^https http early +</VirtualHost> |