this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Remove apache config files

-65
-34
conf/tumble_22.conf
··· 1 - <VirtualHost *:80> 2 - ServerName tumble.wcyd.org 3 - ServerAlias tumble.wcyd.org tumble.loserfish.org 4 - ServerAdmin admin@wcyd.org 5 - DocumentRoot /srv/www/tumble.wcyd.org/htdocs 6 - ErrorLog /var/log/apache2/tumble-error.log 7 - CustomLog /var/log/apache2/tumble-access.log common 8 - 9 - <Directory /srv/www/tumble.wcyd.org/htdocs> 10 - Options ExecCGI FollowSymLinks 11 - AllowOverride None 12 - AddHandler cgi-script .cgi 13 - DirectoryIndex index.cgi 14 - RewriteEngine On 15 - RewriteBase / 16 - RewriteRule ^index\.xml$ ?dtype=xml 17 - RewriteRule ^search/(.*[^/])/?$ /search.cgi?search=$1 18 - Order allow,deny 19 - Allow from all 20 - </Directory> 21 - 22 - <Directory /srv/www/tumble.wcyd.org/htdocs/2202> 23 - DirectoryIndex index.html 24 - Order allow,deny 25 - Allow from all 26 - </Directory> 27 - 28 - <Directory /srv/www/tumble.wcyd.org/htdocs/buttons> 29 - DirectoryIndex index.html 30 - Order allow,deny 31 - Allow from all 32 - </Directory> 33 - </VirtualHost> 34 -
-31
conf/tumble_24.conf
··· 1 - <VirtualHost *:80> 2 - ServerName tumble 3 - ServerAlias tumble.example.com 4 - ServerAdmin admin@example.com 5 - DocumentRoot /srv/www/tumble/htdocs 6 - ErrorLog /var/log/httpd/tumble-error.log 7 - CustomLog /var/log/httpd/tumble-access.log common 8 - 9 - <Directory /srv/www/tumble/htdocs> 10 - Options ExecCGI FollowSymLinks 11 - AllowOverride None 12 - AddHandler cgi-script .cgi 13 - DirectoryIndex index.cgi 14 - RewriteEngine On 15 - RewriteBase / 16 - RewriteRule ^index\.xml$ ?dtype=xml 17 - RewriteRule ^search/(.*[^/])/?$ /search.cgi?search=$1 18 - Require all granted 19 - </Directory> 20 - 21 - <Directory /srv/www/tumble/htdocs/2202> 22 - DirectoryIndex index.html 23 - Require all granted 24 - </Directory> 25 - 26 - <Directory /srv/www/tumble/htdocs/buttons> 27 - DirectoryIndex index.html 28 - Require all granted 29 - </Directory> 30 - </VirtualHost> 31 -