cscg24-lolpython

CSCG 2024 Challenge 'Can I Haz Lolpython?'
git clone https://git.sinitax.com/sinitax/cscg24-lolpython
Log | Files | Refs | sfeed.txt

apache-config.conf (350B)


      1<VirtualHost *:1024>
      2  ServerAdmin me@mydomain.com
      3  DocumentRoot /var/www/site
      4
      5  <Directory /var/www/site/>
      6      Options -Indexes +FollowSymLinks +MultiViews
      7      AllowOverride All
      8      Order deny,allow
      9      Allow from all
     10  </Directory>
     11
     12  ErrorLog ${APACHE_LOG_DIR}/error.log
     13  CustomLog ${APACHE_LOG_DIR}/access.log combined
     14
     15</VirtualHost>