diff options
| author | Louis Burda <quent.burda@gmail.com> | 2024-03-14 21:30:16 +0100 |
|---|---|---|
| committer | Louis Burda <quent.burda@gmail.com> | 2024-03-14 21:30:16 +0100 |
| commit | 4007ea18f294aefb6128cbe82c5446cd8cb72c50 (patch) | |
| tree | 0d6e38d202ac7be9a59192cd881a4de5d1713a71 /chall/apache-config.conf | |
| download | cscg24-lolpython-4007ea18f294aefb6128cbe82c5446cd8cb72c50.tar.gz cscg24-lolpython-4007ea18f294aefb6128cbe82c5446cd8cb72c50.zip | |
Add solution
Diffstat (limited to 'chall/apache-config.conf')
| -rw-r--r-- | chall/apache-config.conf | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/chall/apache-config.conf b/chall/apache-config.conf new file mode 100644 index 0000000..42b6468 --- /dev/null +++ b/chall/apache-config.conf @@ -0,0 +1,15 @@ +<VirtualHost *:1024> + ServerAdmin me@mydomain.com + DocumentRoot /var/www/site + + <Directory /var/www/site/> + Options -Indexes +FollowSymLinks +MultiViews + AllowOverride All + Order deny,allow + Allow from all + </Directory> + + ErrorLog ${APACHE_LOG_DIR}/error.log + CustomLog ${APACHE_LOG_DIR}/access.log combined + +</VirtualHost> |
