0
0
Fork 0

import from old webserver

This commit is contained in:
Jannik Beyerstedt 2024-01-27 15:10:12 +01:00
commit ef633b2cf4
182 changed files with 69233 additions and 0 deletions

View file

@ -0,0 +1 @@
LoadModule actions_module /usr/lib/apache2/modules/mod_actions.so

View file

@ -0,0 +1 @@
LoadModule asis_module /usr/lib/apache2/modules/mod_asis.so

View file

@ -0,0 +1 @@
LoadModule auth_anon_module /usr/lib/apache2/modules/mod_auth_anon.so

View file

@ -0,0 +1 @@
LoadModule auth_dbm_module /usr/lib/apache2/modules/mod_auth_dbm.so

View file

@ -0,0 +1 @@
LoadModule auth_digest_module /usr/lib/apache2/modules/mod_auth_digest.so

View file

@ -0,0 +1,2 @@
LoadModule ldap_module /usr/lib/apache2/modules/mod_ldap.so
LoadModule auth_ldap_module /usr/lib/apache2/modules/mod_auth_ldap.so

View file

@ -0,0 +1 @@
LoadModule cache_module /usr/lib/apache2/modules/mod_cache.so

View file

@ -0,0 +1 @@
LoadModule cern_meta_module /usr/lib/apache2/modules/mod_cern_meta.so

View file

@ -0,0 +1 @@
LoadModule cgi_module /usr/lib/apache2/modules/mod_cgi.so

View file

@ -0,0 +1,2 @@
# Socket thingy for CGI.
ScriptSock /var/run/apache2/cgisock

View file

@ -0,0 +1 @@
LoadModule cgid_module /usr/lib/apache2/modules/mod_cgid.so

View file

@ -0,0 +1 @@
LoadModule dav_module /usr/lib/apache2/modules/mod_dav.so

View file

@ -0,0 +1,2 @@
DAVLockDB /var/lock/apache2/DAVLock

View file

@ -0,0 +1 @@
LoadModule dav_fs_module /usr/lib/apache2/modules/mod_dav_fs.so

View file

@ -0,0 +1 @@
LoadModule deflate_module /usr/lib/apache2/modules/mod_deflate.so

View file

@ -0,0 +1 @@
LoadModule disk_cache_module /usr/lib/apache2/modules/mod_disk_cache.so

View file

@ -0,0 +1 @@
LoadModule expires_module /usr/lib/apache2/modules/mod_expires.so

View file

@ -0,0 +1 @@
LoadModule ext_filter_module /usr/lib/apache2/modules/mod_ext_filter.so

View file

@ -0,0 +1 @@
LoadModule file_cache_module /usr/lib/apache2/modules/mod_file_cache.so

View file

@ -0,0 +1 @@
LoadModule headers_module /usr/lib/apache2/modules/mod_headers.so

View file

@ -0,0 +1 @@
LoadModule imap_module /usr/lib/apache2/modules/mod_imap.so

View file

@ -0,0 +1 @@
LoadModule include_module /usr/lib/apache2/modules/mod_include.so

View file

@ -0,0 +1 @@
LoadModule info_module /usr/lib/apache2/modules/mod_info.so

View file

@ -0,0 +1 @@
LoadModule ldap_module /usr/lib/apache2/modules/mod_ldap.so

View file

@ -0,0 +1 @@
LoadModule mem_cache_module /usr/lib/apache2/modules/mod_mem_cache.so

View file

@ -0,0 +1,3 @@
<IfModule mod_mime_magic.c>
MIMEMagicFile /usr/share/misc/file/magic.mime
</IfModule>

View file

@ -0,0 +1 @@
LoadModule mime_magic_module /usr/lib/apache2/modules/mod_mime_magic.so

View file

@ -0,0 +1,4 @@
<IfModule mod_php4.c>
AddType application/x-httpd-php .php .phtml .php3
AddType application/x-httpd-php-source .phps
</IfModule>

View file

@ -0,0 +1 @@
LoadModule php4_module /usr/lib/apache2/modules/libphp4.so

View file

@ -0,0 +1,32 @@
<IfModule mod_proxy.c>
#turning ProxyRequests on and allowing proxying from all may allow
#spammers to use your proxy to send email.
ProxyRequests Off
<Proxy *>
Order deny,allow
Deny from all
#Allow from .your_domain.com
</Proxy>
# Enable/disable the handling of HTTP/1.1 "Via:" headers.
# ("Full" adds the server version; "Block" removes all outgoing Via: headers)
# Set to one of: Off | On | Full | Block
ProxyVia On
# To enable the cache as well, edit and uncomment the following lines:
# (no cacheing without CacheRoot)
CacheRoot "/var/cache/apache2/proxy"
CacheSize 5
CacheGcInterval 4
CacheMaxExpire 24
CacheLastModifiedFactor 0.1
CacheDefaultExpire 1
# Again, you probably should change this.
#NoCache a_domain.com another_domain.edu joes.garage_sale.com
</IfModule>

View file

@ -0,0 +1,4 @@
LoadModule cache_module /usr/lib/apache2/modules/mod_cache.so
LoadModule disk_cache_module /usr/lib/apache2/modules/mod_disk_cache.so
LoadModule proxy_module /usr/lib/apache2/modules/mod_proxy.so
LoadModule proxy_http_module /usr/lib/apache2/modules/mod_proxy_http.so

View file

@ -0,0 +1 @@
LoadModule proxy_connect_module /usr/lib/apache2/modules/mod_proxy_connect.so

View file

@ -0,0 +1 @@
LoadModule proxy_ftp_module /usr/lib/apache2/modules/mod_proxy_ftp.so

View file

@ -0,0 +1 @@
LoadModule proxy_http_module /usr/lib/apache2/modules/mod_proxy_http.so

View file

@ -0,0 +1 @@
LoadModule rewrite_module /usr/lib/apache2/modules/mod_rewrite.so

View file

@ -0,0 +1 @@
LoadModule speling_module /usr/lib/apache2/modules/mod_speling.so

View file

@ -0,0 +1,73 @@
<IfModule mod_ssl.c>
# Pseudo Random Number Generator (PRNG):
# Configure one or more sources to seed the PRNG of the SSL library.
# The seed data should be of good random quality.
# WARNING! On some platforms /dev/random blocks if not enough entropy
# is available. This means you then cannot use the /dev/random device
# because it would lead to very long connection times (as long as
# it requires to make more entropy available). But usually those
# platforms additionally provide a /dev/urandom device which doesn't
# block. So, if available, use this one instead. Read the mod_ssl User
# Manual for more details.
#
SSLRandomSeed startup builtin
SSLRandomSeed connect builtin
#SSLRandomSeed startup file:/dev/random 512
#SSLRandomSeed startup file:/dev/urandom 512
#SSLRandomSeed connect file:/dev/random 512
#SSLRandomSeed connect file:/dev/urandom 512
# Some MIME-types for downloading Certificates and CRLs
#
AddType application/x-x509-ca-cert .crt
AddType application/x-pkcs7-crl .crl
# Pass Phrase Dialog:
# Configure the pass phrase gathering process.
# The filtering dialog program (`builtin' is a internal
# terminal dialog) has to provide the pass phrase on stdout.
SSLPassPhraseDialog builtin
# Inter-Process Session Cache:
# Configure the SSL Session Cache: First the mechanism
# to use and second the expiring timeout (in seconds).
#SSLSessionCache none
#SSLSessionCache shmht:/var/run/apache2/ssl_scache(512000)
#SSLSessionCache shmcb:/var/run/apache2/ssl_scache(512000)
SSLSessionCache dbm:/var/run/apache2/ssl_scache
SSLSessionCacheTimeout 300
# Semaphore:
# Configure the path to the mutual exclusion semaphore the
# SSL engine uses internally for inter-process synchronization.
SSLMutex file:/var/run/apache2/ssl_mutex
SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL
# SSL Protocol Adjustments:
# The safe and default but still SSL/TLS standard compliant shutdown
# approach is that mod_ssl sends the close notify alert but doesn't wait for
# the close notify alert from client. When you need a different shutdown
# approach you can use one of the following variables:
# o ssl-unclean-shutdown:
# This forces an unclean shutdown when the connection is closed, i.e. no
# SSL close notify alert is send or allowed to received. This violates
# the SSL/TLS standard but is needed for some brain-dead browsers. Use
# this when you receive I/O errors because of the standard approach where
# mod_ssl sends the close notify alert.
# o ssl-accurate-shutdown:
# This forces an accurate shutdown when the connection is closed, i.e. a
# SSL close notify alert is send and mod_ssl waits for the close notify
# alert of the client. This is 100% SSL/TLS standard compliant, but in
# practice often causes hanging connections with brain-dead browsers. Use
# this only for browsers where you know that their SSL implementation
# works correctly.
# Notice: Most problems of broken clients are also related to the HTTP
# keep-alive facility, so you usually additionally want to disable
# keep-alive for those clients, too. Use variable "nokeepalive" for this.
# Similarly, one has to force some clients to use HTTP/1.0 to workaround
# their broken HTTP/1.1 implementation. Use variables "downgrade-1.0" and
# "force-response-1.0" for this.
SetEnvIf User-Agent ".*MSIE.*" \
nokeepalive ssl-unclean-shutdown \
downgrade-1.0 force-response-1.0
</IfModule>

View file

@ -0,0 +1 @@
LoadModule ssl_module /usr/lib/apache2/modules/mod_ssl.so

View file

@ -0,0 +1 @@
LoadModule suexec_module /usr/lib/apache2/modules/mod_suexec.so

View file

@ -0,0 +1 @@
LoadModule unique_id_module /usr/lib/apache2/modules/mod_unique_id.so

View file

@ -0,0 +1,9 @@
<IfModule mod_userdir.c>
UserDir public_html
UserDir disabled root
<Directory /home/*/public_html>
AllowOverride FileInfo AuthConfig Limit
Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
</Directory>
</IfModule>

View file

@ -0,0 +1 @@
LoadModule userdir_module /usr/lib/apache2/modules/mod_userdir.so

View file

@ -0,0 +1 @@
LoadModule usertrack_module /usr/lib/apache2/modules/mod_usertrack.so

View file

@ -0,0 +1 @@
LoadModule vhost_alias_module /usr/lib/apache2/modules/mod_vhost_alias.so