diff options
| author | Louis Burda <quent.burda@gmail.com> | 2024-03-30 15:37:05 +0100 |
|---|---|---|
| committer | Louis Burda <quent.burda@gmail.com> | 2024-03-30 15:37:05 +0100 |
| commit | 32309e019f2ff7d9f69f3e0016f67439e81b8b30 (patch) | |
| tree | ace9fccd48489648b0586a8f84da21839632d0b9 /solve/apache-config.conf | |
| parent | 4007ea18f294aefb6128cbe82c5446cd8cb72c50 (diff) | |
| download | cscg24-lolpython-32309e019f2ff7d9f69f3e0016f67439e81b8b30.tar.gz cscg24-lolpython-32309e019f2ff7d9f69f3e0016f67439e81b8b30.zip | |
Rename to solve
Diffstat (limited to 'solve/apache-config.conf')
| -rw-r--r-- | solve/apache-config.conf | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/solve/apache-config.conf b/solve/apache-config.conf new file mode 100644 index 0000000..42b6468 --- /dev/null +++ b/solve/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> |
