import from old webserver
This commit is contained in:
commit
ef633b2cf4
182 changed files with 69233 additions and 0 deletions
82
noc/monitor.easterhegg.de/apache2/README
Normal file
82
noc/monitor.easterhegg.de/apache2/README
Normal file
|
@ -0,0 +1,82 @@
|
|||
Apache2 Configuration under Debian GNU/Linux
|
||||
============================================
|
||||
|
||||
Debian's default Apache2 installation attempts to make adding and
|
||||
removing modules, virtual hosts, and extra configuration directives as
|
||||
flexible is possible, in order to make automating the changes and
|
||||
administering the server as easy as possible.
|
||||
|
||||
Files and Directories in /etc/apache2:
|
||||
-------------------------------------
|
||||
|
||||
apache2.conf
|
||||
|
||||
This is the main configuration file.
|
||||
|
||||
conf.d/
|
||||
|
||||
Files in this directory are included by this line in
|
||||
apache2.conf:
|
||||
|
||||
# Include generic snippets of statements
|
||||
Include /etc/apache2/conf.d
|
||||
|
||||
This is a good place to add additional configuration
|
||||
directives.
|
||||
|
||||
httpd.conf
|
||||
|
||||
Empty file.
|
||||
|
||||
magic
|
||||
|
||||
Magic data for mod_mime_magic Apache module, documented in
|
||||
htdocs/manual/mod/mod_mime_magic.html. You probably don't
|
||||
need to touch this.
|
||||
|
||||
mods-available/
|
||||
|
||||
This directory contains a series of .load and .conf files.
|
||||
The .load files contain the Apache configuration directive
|
||||
necessary to load the module in question. The respective
|
||||
.conf files contain configuration directives necessary to
|
||||
utilize the module in question.
|
||||
|
||||
mods-enabled/
|
||||
|
||||
To actually enable a module for Apache2, it is necessary to
|
||||
create a symlink in this directory to the .load (and .conf, if
|
||||
it exists) files associated with the module in
|
||||
mods-available/. For example:
|
||||
|
||||
cgi.load -> /etc/apache2/mods-available/cgi.load
|
||||
|
||||
ports.conf
|
||||
|
||||
Configuration directives for which ports and IP addresses to
|
||||
listen to.
|
||||
|
||||
sites-available/
|
||||
|
||||
Like mods-available/, except it contains configuration
|
||||
directives for different virtual hosts that might be used with
|
||||
apache2. Note that the hostname doesn't have to correspond
|
||||
exactly with the filename. 'default' is the default host.
|
||||
|
||||
sites-enabled/
|
||||
|
||||
Similar in functionality to mods-enabled/, sites-enabled
|
||||
contains symlinks to sites in sites-available/ that the
|
||||
admnistrator wishes to enable.
|
||||
|
||||
Example:
|
||||
dedasys -> /etc/apache2/sites-available/dedasys
|
||||
|
||||
Tools
|
||||
-----
|
||||
|
||||
Currently, a2enmod and a2dismod are available for enabling and
|
||||
disabling modules utilizing the above configuration system.
|
||||
|
||||
a2ensite and a2dissite have been added, which do essentially the
|
||||
same thing as the above tools, but for sites rather than modules.
|
397
noc/monitor.easterhegg.de/apache2/apache2.conf
Normal file
397
noc/monitor.easterhegg.de/apache2/apache2.conf
Normal file
|
@ -0,0 +1,397 @@
|
|||
# Based upon the NCSA server configuration files originally by Rob McCool.
|
||||
# Changed extensively for the Debian package by Daniel Stone <daniel@sfarc.net>
|
||||
# and also by Thom May <thom@debian.org>.
|
||||
|
||||
# ServerRoot: The top of the directory tree under which the server's
|
||||
# configuration, error, and log files are kept.
|
||||
#
|
||||
# NOTE! If you intend to place this on an NFS (or otherwise network)
|
||||
# mounted filesystem then please read the LockFile documentation
|
||||
# (available at <URL:http://www.apache.org/docs/mod/core.html#lockfile>);
|
||||
# you will save yourself a lot of trouble.
|
||||
|
||||
ServerRoot "/etc/apache2"
|
||||
|
||||
# The LockFile directive sets the path to the lockfile used when Apache
|
||||
# is compiled with either USE_FCNTL_SERIALIZED_ACCEPT or
|
||||
# USE_FLOCK_SERIALIZED_ACCEPT. This directive should normally be left at
|
||||
# its default value. The main reason for changing it is if the logs
|
||||
# directory is NFS mounted, since the lockfile MUST BE STORED ON A LOCAL
|
||||
# DISK. The PID of the main server process is automatically appended to
|
||||
# the filename.
|
||||
|
||||
LockFile /var/lock/apache2/accept.lock
|
||||
|
||||
# PidFile: The file in which the server should record its process
|
||||
# identification number when it starts.
|
||||
|
||||
PidFile /var/run/apache2.pid
|
||||
|
||||
# Timeout: The number of seconds before receives and sends time out.
|
||||
|
||||
Timeout 300
|
||||
|
||||
# KeepAlive: Whether or not to allow persistent connections (more than
|
||||
# one request per connection). Set to "Off" to deactivate.
|
||||
|
||||
KeepAlive On
|
||||
|
||||
# MaxKeepAliveRequests: The maximum number of requests to allow
|
||||
# during a persistent connection. Set to 0 to allow an unlimited amount.
|
||||
# We recommend you leave this number high, for maximum performance.
|
||||
|
||||
MaxKeepAliveRequests 100
|
||||
|
||||
# KeepAliveTimeout: Number of seconds to wait for the next request from the
|
||||
# same client on the same connection.
|
||||
|
||||
KeepAliveTimeout 15
|
||||
|
||||
##
|
||||
## Server-Pool Size Regulation (MPM specific)
|
||||
##
|
||||
|
||||
# prefork MPM
|
||||
# StartServers ......... number of server processes to start
|
||||
# MinSpareServers ...... minimum number of server processes which are kept spare
|
||||
# MaxSpareServers ...... maximum number of server processes which are kept spare
|
||||
# MaxClients ........... maximum number of server processes allowed to start
|
||||
# MaxRequestsPerChild .. maximum number of requests a server process serves
|
||||
<IfModule prefork.c>
|
||||
StartServers 5
|
||||
MinSpareServers 5
|
||||
MaxSpareServers 10
|
||||
MaxClients 20
|
||||
MaxRequestsPerChild 0
|
||||
</IfModule>
|
||||
|
||||
# pthread MPM
|
||||
# StartServers ......... initial number of server processes to start
|
||||
# MaxClients ........... maximum number of server processes allowed to start
|
||||
# MinSpareThreads ...... minimum number of worker threads which are kept spare
|
||||
# MaxSpareThreads ...... maximum number of worker threads which are kept spare
|
||||
# ThreadsPerChild ...... constant number of worker threads in each server process
|
||||
# MaxRequestsPerChild .. maximum number of requests a server process serves
|
||||
<IfModule worker.c>
|
||||
StartServers 2
|
||||
MaxClients 150
|
||||
MinSpareThreads 25
|
||||
MaxSpareThreads 75
|
||||
ThreadsPerChild 25
|
||||
MaxRequestsPerChild 0
|
||||
</IfModule>
|
||||
|
||||
# perchild MPM
|
||||
# NumServers ........... constant number of server processes
|
||||
# StartThreads ......... initial number of worker threads in each server process
|
||||
# MinSpareThreads ...... minimum number of worker threads which are kept spare
|
||||
# MaxSpareThreads ...... maximum number of worker threads which are kept spare
|
||||
# MaxThreadsPerChild ... maximum number of worker threads in each server process
|
||||
# MaxRequestsPerChild .. maximum number of connections per server process (then it dies)
|
||||
<IfModule perchild.c>
|
||||
NumServers 5
|
||||
StartThreads 5
|
||||
MinSpareThreads 5
|
||||
MaxSpareThreads 10
|
||||
MaxThreadsPerChild 20
|
||||
MaxRequestsPerChild 0
|
||||
AcceptMutex fcntl
|
||||
</IfModule>
|
||||
|
||||
User www-data
|
||||
Group www-data
|
||||
|
||||
# The following directives define some format nicknames for use with
|
||||
# a CustomLog directive (see below).
|
||||
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
|
||||
LogFormat "%h %l %u %t \"%r\" %>s %b" common
|
||||
LogFormat "%{Referer}i -> %U" referer
|
||||
LogFormat "%{User-agent}i" agent
|
||||
|
||||
|
||||
# Global error log.
|
||||
ErrorLog /var/log/apache2/error.log
|
||||
|
||||
# Include module configuration:
|
||||
Include /etc/apache2/mods-enabled/*.load
|
||||
Include /etc/apache2/mods-enabled/*.conf
|
||||
|
||||
# Include all the user configurations:
|
||||
Include /etc/apache2/httpd.conf
|
||||
|
||||
# Include ports listing
|
||||
Include /etc/apache2/ports.conf
|
||||
|
||||
# Include generic snippets of statements
|
||||
Include /etc/apache2/conf.d/[^.#]*
|
||||
|
||||
#Let's have some Icons, shall we?
|
||||
Alias /icons/ "/usr/share/apache2/icons/"
|
||||
<Directory "/usr/share/apache2/icons">
|
||||
Options Indexes MultiViews
|
||||
AllowOverride None
|
||||
Order allow,deny
|
||||
Allow from all
|
||||
</Directory>
|
||||
|
||||
# Set up the default error docs.
|
||||
#
|
||||
# Customizable error responses come in three flavors:
|
||||
# 1) plain text 2) local redirects 3) external redirects
|
||||
#
|
||||
# Some examples:
|
||||
#ErrorDocument 500 "The server made a boo boo."
|
||||
#ErrorDocument 404 /missing.html
|
||||
#ErrorDocument 404 "/cgi-bin/missing_handler.pl"
|
||||
#ErrorDocument 402 http://www.example.com/subscription_info.html
|
||||
#
|
||||
|
||||
#
|
||||
# Putting this all together, we can Internationalize error responses.
|
||||
#
|
||||
# We use Alias to redirect any /error/HTTP_<error>.html.var response to
|
||||
# our collection of by-error message multi-language collections. We use
|
||||
# includes to substitute the appropriate text.
|
||||
#
|
||||
# You can modify the messages' appearance without changing any of the
|
||||
# default HTTP_<error>.html.var files by adding the line;
|
||||
#
|
||||
# Alias /error/include/ "/your/include/path/"
|
||||
#
|
||||
# which allows you to create your own set of files by starting with the
|
||||
# /usr/local/apache2/error/include/ files and
|
||||
# copying them to /your/include/path/, even on a per-VirtualHost basis.
|
||||
#
|
||||
|
||||
<IfModule mod_negotiation.c>
|
||||
<IfModule mod_include.c>
|
||||
Alias /error/ "/usr/share/apache2/error/"
|
||||
|
||||
<Directory "/usr/share/apache2/error">
|
||||
AllowOverride None
|
||||
Options IncludesNoExec
|
||||
AddOutputFilter Includes html
|
||||
AddHandler type-map var
|
||||
Order allow,deny
|
||||
Allow from all
|
||||
LanguagePriority en es de fr
|
||||
ForceLanguagePriority Prefer Fallback
|
||||
</Directory>
|
||||
|
||||
ErrorDocument 400 /error/HTTP_BAD_REQUEST.html.var
|
||||
ErrorDocument 401 /error/HTTP_UNAUTHORIZED.html.var
|
||||
ErrorDocument 403 /error/HTTP_FORBIDDEN.html.var
|
||||
ErrorDocument 404 /error/HTTP_NOT_FOUND.html.var
|
||||
ErrorDocument 405 /error/HTTP_METHOD_NOT_ALLOWED.html.var
|
||||
ErrorDocument 408 /error/HTTP_REQUEST_TIME_OUT.html.var
|
||||
ErrorDocument 410 /error/HTTP_GONE.html.var
|
||||
ErrorDocument 411 /error/HTTP_LENGTH_REQUIRED.html.var
|
||||
ErrorDocument 412 /error/HTTP_PRECONDITION_FAILED.html.var
|
||||
ErrorDocument 413 /error/HTTP_REQUEST_ENTITY_TOO_LARGE.html.var
|
||||
ErrorDocument 414 /error/HTTP_REQUEST_URI_TOO_LARGE.html.var
|
||||
ErrorDocument 415 /error/HTTP_SERVICE_UNAVAILABLE.html.var
|
||||
ErrorDocument 500 /error/HTTP_INTERNAL_SERVER_ERROR.html.var
|
||||
ErrorDocument 501 /error/HTTP_NOT_IMPLEMENTED.html.var
|
||||
ErrorDocument 502 /error/HTTP_BAD_GATEWAY.html.var
|
||||
ErrorDocument 503 /error/HTTP_SERVICE_UNAVAILABLE.html.var
|
||||
ErrorDocument 506 /error/HTTP_VARIANT_ALSO_VARIES.html.var
|
||||
|
||||
</IfModule>
|
||||
</IfModule>
|
||||
|
||||
DirectoryIndex index.shtml index.html index.cgi index.pl index.php index.xhtml
|
||||
|
||||
# UserDir is now a module
|
||||
#UserDir public_html
|
||||
#UserDir disabled root
|
||||
|
||||
#<Directory /home/*/public_html>
|
||||
# AllowOverride FileInfo AuthConfig Limit
|
||||
# Options Indexes SymLinksIfOwnerMatch IncludesNoExec
|
||||
#</Directory>
|
||||
|
||||
AccessFileName .htaccess
|
||||
|
||||
<Files ~ "^\.ht">
|
||||
Order allow,deny
|
||||
Deny from all
|
||||
</Files>
|
||||
|
||||
UseCanonicalName Off
|
||||
|
||||
TypesConfig /etc/mime.types
|
||||
DefaultType text/plain
|
||||
|
||||
HostnameLookups Off
|
||||
|
||||
IndexOptions FancyIndexing VersionSort
|
||||
|
||||
AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip
|
||||
|
||||
AddIconByType (TXT,/icons/text.gif) text/*
|
||||
AddIconByType (IMG,/icons/image2.gif) image/*
|
||||
AddIconByType (SND,/icons/sound2.gif) audio/*
|
||||
AddIconByType (VID,/icons/movie.gif) video/*
|
||||
|
||||
# This really should be .jpg.
|
||||
|
||||
AddIcon /icons/binary.gif .bin .exe
|
||||
AddIcon /icons/binhex.gif .hqx
|
||||
AddIcon /icons/tar.gif .tar
|
||||
AddIcon /icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv
|
||||
AddIcon /icons/compressed.gif .Z .z .tgz .gz .zip
|
||||
AddIcon /icons/a.gif .ps .ai .eps
|
||||
AddIcon /icons/layout.gif .html .shtml .htm .pdf
|
||||
AddIcon /icons/text.gif .txt
|
||||
AddIcon /icons/c.gif .c
|
||||
AddIcon /icons/p.gif .pl .py
|
||||
AddIcon /icons/f.gif .for
|
||||
AddIcon /icons/dvi.gif .dvi
|
||||
AddIcon /icons/uuencoded.gif .uu
|
||||
AddIcon /icons/script.gif .conf .sh .shar .csh .ksh .tcl
|
||||
AddIcon /icons/tex.gif .tex
|
||||
AddIcon /icons/bomb.gif core
|
||||
|
||||
AddIcon /icons/back.gif ..
|
||||
AddIcon /icons/hand.right.gif README
|
||||
AddIcon /icons/folder.gif ^^DIRECTORY^^
|
||||
AddIcon /icons/blank.gif ^^BLANKICON^^
|
||||
|
||||
|
||||
# This is from Matty J's patch. Anyone want to make the icons?
|
||||
#AddIcon /icons/dirsymlink.jpg ^^SYMDIR^^
|
||||
#AddIcon /icons/symlink.jpg ^^SYMLINK^^
|
||||
|
||||
DefaultIcon /icons/unknown.gif
|
||||
|
||||
ReadmeName README.html
|
||||
HeaderName HEADER.html
|
||||
|
||||
IndexIgnore .??* *~ *# HEADER* RCS CVS *,t
|
||||
|
||||
AddEncoding x-compress Z
|
||||
AddEncoding x-gzip gz tgz
|
||||
|
||||
AddLanguage da .dk
|
||||
AddLanguage nl .nl
|
||||
AddLanguage en .en
|
||||
AddLanguage et .et
|
||||
AddLanguage fr .fr
|
||||
AddLanguage de .de
|
||||
AddLanguage el .el
|
||||
AddLanguage it .it
|
||||
AddLanguage ja .ja
|
||||
AddLanguage pl .po
|
||||
AddLanguage ko .ko
|
||||
AddLanguage pt .pt
|
||||
AddLanguage no .no
|
||||
AddLanguage pt-br .pt-br
|
||||
AddLanguage ltz .ltz
|
||||
AddLanguage ca .ca
|
||||
AddLanguage es .es
|
||||
AddLanguage sv .se
|
||||
AddLanguage cz .cz
|
||||
AddLanguage ru .ru
|
||||
AddLanguage tw .tw
|
||||
AddLanguage zh-tw .tw
|
||||
|
||||
LanguagePriority en da nl et fr de el it ja ko no pl pt pt-br ltz ca es sv tw
|
||||
|
||||
|
||||
#AddDefaultCharset ISO-8859-1
|
||||
|
||||
AddCharset ISO-8859-1 .iso8859-1 .latin1
|
||||
AddCharset ISO-8859-2 .iso8859-2 .latin2 .cen
|
||||
AddCharset ISO-8859-3 .iso8859-3 .latin3
|
||||
AddCharset ISO-8859-4 .iso8859-4 .latin4
|
||||
AddCharset ISO-8859-5 .iso8859-5 .latin5 .cyr .iso-ru
|
||||
AddCharset ISO-8859-6 .iso8859-6 .latin6 .arb
|
||||
AddCharset ISO-8859-7 .iso8859-7 .latin7 .grk
|
||||
AddCharset ISO-8859-8 .iso8859-8 .latin8 .heb
|
||||
AddCharset ISO-8859-9 .iso8859-9 .latin9 .trk
|
||||
AddCharset ISO-2022-JP .iso2022-jp .jis
|
||||
AddCharset ISO-2022-KR .iso2022-kr .kis
|
||||
AddCharset ISO-2022-CN .iso2022-cn .cis
|
||||
AddCharset Big5 .Big5 .big5
|
||||
# For russian, more than one charset is used (depends on client, mostly):
|
||||
AddCharset WINDOWS-1251 .cp-1251 .win-1251
|
||||
AddCharset CP866 .cp866
|
||||
AddCharset KOI8-r .koi8-r .koi8-ru
|
||||
AddCharset KOI8-ru .koi8-uk .ua
|
||||
AddCharset ISO-10646-UCS-2 .ucs2
|
||||
AddCharset ISO-10646-UCS-4 .ucs4
|
||||
AddCharset UTF-8 .utf8
|
||||
|
||||
AddCharset GB2312 .gb2312 .gb
|
||||
AddCharset utf-7 .utf7
|
||||
AddCharset utf-8 .utf8
|
||||
AddCharset big5 .big5 .b5
|
||||
AddCharset EUC-TW .euc-tw
|
||||
AddCharset EUC-JP .euc-jp
|
||||
AddCharset EUC-KR .euc-kr
|
||||
AddCharset shift_jis .sjis
|
||||
|
||||
AddType application/x-httpd-php .php
|
||||
AddType application/x-httpd-php-source .phps
|
||||
|
||||
AddType application/x-tar .tgz
|
||||
|
||||
# To use CGI scripts outside /cgi-bin/:
|
||||
#
|
||||
#AddHandler cgi-script .cgi
|
||||
|
||||
# To use server-parsed HTML files
|
||||
#
|
||||
AddType text/html .shtml
|
||||
<FilesMatch "\.shtml(\..+)?$">
|
||||
SetOutputFilter INCLUDES
|
||||
</FilesMatch>
|
||||
|
||||
|
||||
# If you wish to use server-parsed imagemap files, use
|
||||
#
|
||||
#AddHandler imap-file map
|
||||
|
||||
BrowserMatch "Mozilla/2" nokeepalive
|
||||
BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-response-1.0
|
||||
BrowserMatch "RealPlayer 4\.0" force-response-1.0
|
||||
BrowserMatch "Java/1\.0" force-response-1.0
|
||||
BrowserMatch "JDK/1\.0" force-response-1.0
|
||||
|
||||
#
|
||||
# The following directive disables redirects on non-GET requests for
|
||||
# a directory that does not include the trailing slash. This fixes a
|
||||
# problem with Microsoft WebFolders which does not appropriately handle
|
||||
# redirects for folders with DAV methods.
|
||||
#
|
||||
|
||||
BrowserMatch "Microsoft Data Access Internet Publishing Provider" redirect-carefully
|
||||
BrowserMatch "^WebDrive" redirect-carefully
|
||||
BrowserMatch "^gnome-vfs" redirect-carefully
|
||||
BrowserMatch "^WebDAVFS/1.[012]" redirect-carefully
|
||||
|
||||
# Allow server status reports, with the URL of http://servername/server-status
|
||||
# Change the ".your_domain.com" to match your domain to enable.
|
||||
#
|
||||
#<Location /server-status>
|
||||
# SetHandler server-status
|
||||
# Order deny,allow
|
||||
# Deny from all
|
||||
# Allow from .your_domain.com
|
||||
#</Location>
|
||||
|
||||
# Allow remote server configuration reports, with the URL of
|
||||
# http://servername/server-info (requires that mod_info.c be loaded).
|
||||
# Change the ".your_domain.com" to match your domain to enable.
|
||||
#
|
||||
#<Location /server-info>
|
||||
# SetHandler server-info
|
||||
# Order deny,allow
|
||||
# Deny from all
|
||||
# Allow from .your_domain.com
|
||||
#</Location>
|
||||
|
||||
# Include the virtual host configurations:
|
||||
Include /etc/apache2/sites-enabled/[^.#]*
|
||||
|
||||
Include /etc/cacti/apache.conf
|
21
noc/monitor.easterhegg.de/apache2/envvars
Normal file
21
noc/monitor.easterhegg.de/apache2/envvars
Normal file
|
@ -0,0 +1,21 @@
|
|||
# Copyright 2001-2005 The Apache Software Foundation or its licensors, as
|
||||
# applicable.
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
#
|
||||
#
|
||||
# envvars-std - default environment variables for apachectl
|
||||
#
|
||||
# This file is generated from envvars-std.in
|
||||
#
|
||||
|
5
noc/monitor.easterhegg.de/apache2/httpd.conf
Normal file
5
noc/monitor.easterhegg.de/apache2/httpd.conf
Normal file
|
@ -0,0 +1,5 @@
|
|||
# This is here for backwards compatability reasons and to support
|
||||
# installing 3rd party modules directly via apxs2, rather than
|
||||
# through the /etc/apache2/mods-{available,enabled} mechanism.
|
||||
#
|
||||
#LoadModule mod_placeholder /usr/lib/apache2/modules/mod_placeholder.so
|
371
noc/monitor.easterhegg.de/apache2/magic
Normal file
371
noc/monitor.easterhegg.de/apache2/magic
Normal file
|
@ -0,0 +1,371 @@
|
|||
# Magic data for mod_mime_magic Apache module (originally for file(1) command)
|
||||
# The module is described in htdocs/manual/mod/mod_mime_magic.html
|
||||
#
|
||||
# The format is 4-5 columns:
|
||||
# Column #1: byte number to begin checking from, ">" indicates continuation
|
||||
# Column #2: type of data to match
|
||||
# Column #3: contents of data to match
|
||||
# Column #4: MIME type of result
|
||||
# Column #5: MIME encoding of result (optional)
|
||||
|
||||
#------------------------------------------------------------------------------
|
||||
# Localstuff: file(1) magic for locally observed files
|
||||
# Add any locally observed files here.
|
||||
|
||||
#------------------------------------------------------------------------------
|
||||
# end local stuff
|
||||
#------------------------------------------------------------------------------
|
||||
|
||||
#------------------------------------------------------------------------------
|
||||
# Java
|
||||
|
||||
0 short 0xcafe
|
||||
>2 short 0xbabe application/java
|
||||
|
||||
#------------------------------------------------------------------------------
|
||||
# audio: file(1) magic for sound formats
|
||||
#
|
||||
# from Jan Nicolai Langfeldt <janl@ifi.uio.no>,
|
||||
#
|
||||
|
||||
# Sun/NeXT audio data
|
||||
0 string .snd
|
||||
>12 belong 1 audio/basic
|
||||
>12 belong 2 audio/basic
|
||||
>12 belong 3 audio/basic
|
||||
>12 belong 4 audio/basic
|
||||
>12 belong 5 audio/basic
|
||||
>12 belong 6 audio/basic
|
||||
>12 belong 7 audio/basic
|
||||
|
||||
>12 belong 23 audio/x-adpcm
|
||||
|
||||
# DEC systems (e.g. DECstation 5000) use a variant of the Sun/NeXT format
|
||||
# that uses little-endian encoding and has a different magic number
|
||||
# (0x0064732E in little-endian encoding).
|
||||
0 lelong 0x0064732E
|
||||
>12 lelong 1 audio/x-dec-basic
|
||||
>12 lelong 2 audio/x-dec-basic
|
||||
>12 lelong 3 audio/x-dec-basic
|
||||
>12 lelong 4 audio/x-dec-basic
|
||||
>12 lelong 5 audio/x-dec-basic
|
||||
>12 lelong 6 audio/x-dec-basic
|
||||
>12 lelong 7 audio/x-dec-basic
|
||||
# compressed (G.721 ADPCM)
|
||||
>12 lelong 23 audio/x-dec-adpcm
|
||||
|
||||
# Bytes 0-3 of AIFF, AIFF-C, & 8SVX audio files are "FORM"
|
||||
# AIFF audio data
|
||||
8 string AIFF audio/x-aiff
|
||||
# AIFF-C audio data
|
||||
8 string AIFC audio/x-aiff
|
||||
# IFF/8SVX audio data
|
||||
8 string 8SVX audio/x-aiff
|
||||
|
||||
# Creative Labs AUDIO stuff
|
||||
# Standard MIDI data
|
||||
0 string MThd audio/unknown
|
||||
#>9 byte >0 (format %d)
|
||||
#>11 byte >1 using %d channels
|
||||
# Creative Music (CMF) data
|
||||
0 string CTMF audio/unknown
|
||||
# SoundBlaster instrument data
|
||||
0 string SBI audio/unknown
|
||||
# Creative Labs voice data
|
||||
0 string Creative\ Voice\ File audio/unknown
|
||||
## is this next line right? it came this way...
|
||||
#>19 byte 0x1A
|
||||
#>23 byte >0 - version %d
|
||||
#>22 byte >0 \b.%d
|
||||
|
||||
# [GRR 950115: is this also Creative Labs? Guessing that first line
|
||||
# should be string instead of unknown-endian long...]
|
||||
#0 long 0x4e54524b MultiTrack sound data
|
||||
#0 string NTRK MultiTrack sound data
|
||||
#>4 long x - version %ld
|
||||
|
||||
# Microsoft WAVE format (*.wav)
|
||||
# [GRR 950115: probably all of the shorts and longs should be leshort/lelong]
|
||||
# Microsoft RIFF
|
||||
0 string RIFF audio/unknown
|
||||
# - WAVE format
|
||||
>8 string WAVE audio/x-wav
|
||||
|
||||
#------------------------------------------------------------------------------
|
||||
# c-lang: file(1) magic for C programs or various scripts
|
||||
#
|
||||
|
||||
# XPM icons (Greg Roelofs, newt@uchicago.edu)
|
||||
# ideally should go into "images", but entries below would tag XPM as C source
|
||||
0 string /*\ XPM image/x-xbm 7bit
|
||||
|
||||
# this first will upset you if you're a PL/1 shop... (are there any left?)
|
||||
# in which case rm it; ascmagic will catch real C programs
|
||||
# C or REXX program text
|
||||
0 string /* text/plain
|
||||
# C++ program text
|
||||
0 string // text/plain
|
||||
|
||||
#------------------------------------------------------------------------------
|
||||
# compress: file(1) magic for pure-compression formats (no archives)
|
||||
#
|
||||
# compress, gzip, pack, compact, huf, squeeze, crunch, freeze, yabba, whap, etc.
|
||||
#
|
||||
# Formats for various forms of compressed data
|
||||
# Formats for "compress" proper have been moved into "compress.c",
|
||||
# because it tries to uncompress it to figure out what's inside.
|
||||
|
||||
# standard unix compress
|
||||
0 string \037\235 application/octet-stream x-compress
|
||||
|
||||
# gzip (GNU zip, not to be confused with [Info-ZIP/PKWARE] zip archiver)
|
||||
0 string \037\213 application/octet-stream x-gzip
|
||||
|
||||
# According to gzip.h, this is the correct byte order for packed data.
|
||||
0 string \037\036 application/octet-stream
|
||||
#
|
||||
# This magic number is byte-order-independent.
|
||||
#
|
||||
0 short 017437 application/octet-stream
|
||||
|
||||
# XXX - why *two* entries for "compacted data", one of which is
|
||||
# byte-order independent, and one of which is byte-order dependent?
|
||||
#
|
||||
# compacted data
|
||||
0 short 0x1fff application/octet-stream
|
||||
0 string \377\037 application/octet-stream
|
||||
# huf output
|
||||
0 short 0145405 application/octet-stream
|
||||
|
||||
# Squeeze and Crunch...
|
||||
# These numbers were gleaned from the Unix versions of the programs to
|
||||
# handle these formats. Note that I can only uncrunch, not crunch, and
|
||||
# I didn't have a crunched file handy, so the crunch number is untested.
|
||||
# Keith Waclena <keith@cerberus.uchicago.edu>
|
||||
#0 leshort 0x76FF squeezed data (CP/M, DOS)
|
||||
#0 leshort 0x76FE crunched data (CP/M, DOS)
|
||||
|
||||
# Freeze
|
||||
#0 string \037\237 Frozen file 2.1
|
||||
#0 string \037\236 Frozen file 1.0 (or gzip 0.5)
|
||||
|
||||
# lzh?
|
||||
#0 string \037\240 LZH compressed data
|
||||
|
||||
#------------------------------------------------------------------------------
|
||||
# frame: file(1) magic for FrameMaker files
|
||||
#
|
||||
# This stuff came on a FrameMaker demo tape, most of which is
|
||||
# copyright, but this file is "published" as witness the following:
|
||||
#
|
||||
0 string \<MakerFile application/x-frame
|
||||
0 string \<MIFFile application/x-frame
|
||||
0 string \<MakerDictionary application/x-frame
|
||||
0 string \<MakerScreenFon application/x-frame
|
||||
0 string \<MML application/x-frame
|
||||
0 string \<Book application/x-frame
|
||||
0 string \<Maker application/x-frame
|
||||
|
||||
#------------------------------------------------------------------------------
|
||||
# html: file(1) magic for HTML (HyperText Markup Language) docs
|
||||
#
|
||||
# from Daniel Quinlan <quinlan@yggdrasil.com>
|
||||
# and Anna Shergold <anna@inext.co.uk>
|
||||
#
|
||||
0 string \<!DOCTYPE\ HTML text/html
|
||||
0 string \<!doctype\ html text/html
|
||||
0 string \<HEAD text/html
|
||||
0 string \<head text/html
|
||||
0 string \<TITLE text/html
|
||||
0 string \<title text/html
|
||||
0 string \<html text/html
|
||||
0 string \<HTML text/html
|
||||
0 string \<!-- text/html
|
||||
0 string \<h1 text/html
|
||||
0 string \<H1 text/html
|
||||
|
||||
#------------------------------------------------------------------------------
|
||||
# images: file(1) magic for image formats (see also "c-lang" for XPM bitmaps)
|
||||
#
|
||||
# originally from jef@helios.ee.lbl.gov (Jef Poskanzer),
|
||||
# additions by janl@ifi.uio.no as well as others. Jan also suggested
|
||||
# merging several one- and two-line files into here.
|
||||
#
|
||||
# XXX - byte order for GIF and TIFF fields?
|
||||
# [GRR: TIFF allows both byte orders; GIF is probably little-endian]
|
||||
#
|
||||
|
||||
# [GRR: what the hell is this doing in here?]
|
||||
#0 string xbtoa btoa'd file
|
||||
|
||||
# PBMPLUS
|
||||
# PBM file
|
||||
0 string P1 image/x-portable-bitmap 7bit
|
||||
# PGM file
|
||||
0 string P2 image/x-portable-greymap 7bit
|
||||
# PPM file
|
||||
0 string P3 image/x-portable-pixmap 7bit
|
||||
# PBM "rawbits" file
|
||||
0 string P4 image/x-portable-bitmap
|
||||
# PGM "rawbits" file
|
||||
0 string P5 image/x-portable-greymap
|
||||
# PPM "rawbits" file
|
||||
0 string P6 image/x-portable-pixmap
|
||||
|
||||
# NIFF (Navy Interchange File Format, a modification of TIFF)
|
||||
# [GRR: this *must* go before TIFF]
|
||||
0 string IIN1 image/x-niff
|
||||
|
||||
# TIFF and friends
|
||||
# TIFF file, big-endian
|
||||
0 string MM image/tiff
|
||||
# TIFF file, little-endian
|
||||
0 string II image/tiff
|
||||
|
||||
# possible GIF replacements; none yet released!
|
||||
# (Greg Roelofs, newt@uchicago.edu)
|
||||
#
|
||||
# GRR 950115: this was mine ("Zip GIF"):
|
||||
# ZIF image (GIF+deflate alpha)
|
||||
0 string GIF94z image/unknown
|
||||
#
|
||||
# GRR 950115: this is Jeremy Wohl's Free Graphics Format (better):
|
||||
# FGF image (GIF+deflate beta)
|
||||
0 string FGF95a image/unknown
|
||||
#
|
||||
# GRR 950115: this is Thomas Boutell's Portable Bitmap Format proposal
|
||||
# (best; not yet implemented):
|
||||
# PBF image (deflate compression)
|
||||
0 string PBF image/unknown
|
||||
|
||||
# GIF
|
||||
0 string GIF image/gif
|
||||
|
||||
# JPEG images
|
||||
0 beshort 0xffd8 image/jpeg
|
||||
|
||||
# PC bitmaps (OS/2, Windoze BMP files) (Greg Roelofs, newt@uchicago.edu)
|
||||
0 string BM image/bmp
|
||||
#>14 byte 12 (OS/2 1.x format)
|
||||
#>14 byte 64 (OS/2 2.x format)
|
||||
#>14 byte 40 (Windows 3.x format)
|
||||
#0 string IC icon
|
||||
#0 string PI pointer
|
||||
#0 string CI color icon
|
||||
#0 string CP color pointer
|
||||
#0 string BA bitmap array
|
||||
|
||||
|
||||
#------------------------------------------------------------------------------
|
||||
# lisp: file(1) magic for lisp programs
|
||||
#
|
||||
# various lisp types, from Daniel Quinlan (quinlan@yggdrasil.com)
|
||||
0 string ;; text/plain 8bit
|
||||
# Emacs 18 - this is always correct, but not very magical.
|
||||
0 string \012( application/x-elc
|
||||
# Emacs 19
|
||||
0 string ;ELC\023\000\000\000 application/x-elc
|
||||
|
||||
#------------------------------------------------------------------------------
|
||||
# mail.news: file(1) magic for mail and news
|
||||
#
|
||||
# There are tests to ascmagic.c to cope with mail and news.
|
||||
0 string Relay-Version: message/rfc822 7bit
|
||||
0 string #!\ rnews message/rfc822 7bit
|
||||
0 string N#!\ rnews message/rfc822 7bit
|
||||
0 string Forward\ to message/rfc822 7bit
|
||||
0 string Pipe\ to message/rfc822 7bit
|
||||
0 string Return-Path: message/rfc822 7bit
|
||||
0 string Path: message/news 8bit
|
||||
0 string Xref: message/news 8bit
|
||||
0 string From: message/rfc822 7bit
|
||||
0 string Article message/news 8bit
|
||||
#------------------------------------------------------------------------------
|
||||
# msword: file(1) magic for MS Word files
|
||||
#
|
||||
# Contributor claims:
|
||||
# Reversed-engineered MS Word magic numbers
|
||||
#
|
||||
|
||||
0 string \376\067\0\043 application/msword
|
||||
0 string \333\245-\0\0\0 application/msword
|
||||
|
||||
# disable this one because it applies also to other
|
||||
# Office/OLE documents for which msword is not correct. See PR#2608.
|
||||
#0 string \320\317\021\340\241\261 application/msword
|
||||
|
||||
|
||||
|
||||
#------------------------------------------------------------------------------
|
||||
# printer: file(1) magic for printer-formatted files
|
||||
#
|
||||
|
||||
# PostScript
|
||||
0 string %! application/postscript
|
||||
0 string \004%! application/postscript
|
||||
|
||||
# Acrobat
|
||||
# (due to clamen@cs.cmu.edu)
|
||||
0 string %PDF- application/pdf
|
||||
|
||||
#------------------------------------------------------------------------------
|
||||
# sc: file(1) magic for "sc" spreadsheet
|
||||
#
|
||||
38 string Spreadsheet application/x-sc
|
||||
|
||||
#------------------------------------------------------------------------------
|
||||
# tex: file(1) magic for TeX files
|
||||
#
|
||||
# XXX - needs byte-endian stuff (big-endian and little-endian DVI?)
|
||||
#
|
||||
# From <conklin@talisman.kaleida.com>
|
||||
|
||||
# Although we may know the offset of certain text fields in TeX DVI
|
||||
# and font files, we can't use them reliably because they are not
|
||||
# zero terminated. [but we do anyway, christos]
|
||||
0 string \367\002 application/x-dvi
|
||||
#0 string \367\203 TeX generic font data
|
||||
#0 string \367\131 TeX packed font data
|
||||
#0 string \367\312 TeX virtual font data
|
||||
#0 string This\ is\ TeX, TeX transcript text
|
||||
#0 string This\ is\ METAFONT, METAFONT transcript text
|
||||
|
||||
# There is no way to detect TeX Font Metric (*.tfm) files without
|
||||
# breaking them apart and reading the data. The following patterns
|
||||
# match most *.tfm files generated by METAFONT or afm2tfm.
|
||||
#2 string \000\021 TeX font metric data
|
||||
#2 string \000\022 TeX font metric data
|
||||
#>34 string >\0 (%s)
|
||||
|
||||
# Texinfo and GNU Info, from Daniel Quinlan (quinlan@yggdrasil.com)
|
||||
#0 string \\input\ texinfo Texinfo source text
|
||||
#0 string This\ is\ Info\ file GNU Info text
|
||||
|
||||
# correct TeX magic for Linux (and maybe more)
|
||||
# from Peter Tobias (tobias@server.et-inf.fho-emden.de)
|
||||
#
|
||||
0 leshort 0x02f7 application/x-dvi
|
||||
|
||||
# RTF - Rich Text Format
|
||||
0 string {\\rtf application/rtf
|
||||
|
||||
#------------------------------------------------------------------------------
|
||||
# animation: file(1) magic for animation/movie formats
|
||||
#
|
||||
# animation formats, originally from vax@ccwf.cc.utexas.edu (VaX#n8)
|
||||
# MPEG file
|
||||
0 string \000\000\001\263 video/mpeg
|
||||
#
|
||||
# The contributor claims:
|
||||
# I couldn't find a real magic number for these, however, this
|
||||
# -appears- to work. Note that it might catch other files, too,
|
||||
# so BE CAREFUL!
|
||||
#
|
||||
# Note that title and author appear in the two 20-byte chunks
|
||||
# at decimal offsets 2 and 22, respectively, but they are XOR'ed with
|
||||
# 255 (hex FF)! DL format SUCKS BIG ROCKS.
|
||||
#
|
||||
# DL file version 1 , medium format (160x100, 4 images/screen)
|
||||
0 byte 1 video/unknown
|
||||
0 byte 2 video/unknown
|
||||
|
|
@ -0,0 +1 @@
|
|||
LoadModule actions_module /usr/lib/apache2/modules/mod_actions.so
|
|
@ -0,0 +1 @@
|
|||
LoadModule asis_module /usr/lib/apache2/modules/mod_asis.so
|
|
@ -0,0 +1 @@
|
|||
LoadModule auth_anon_module /usr/lib/apache2/modules/mod_auth_anon.so
|
|
@ -0,0 +1 @@
|
|||
LoadModule auth_dbm_module /usr/lib/apache2/modules/mod_auth_dbm.so
|
|
@ -0,0 +1 @@
|
|||
LoadModule auth_digest_module /usr/lib/apache2/modules/mod_auth_digest.so
|
|
@ -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
|
|
@ -0,0 +1 @@
|
|||
LoadModule cache_module /usr/lib/apache2/modules/mod_cache.so
|
|
@ -0,0 +1 @@
|
|||
LoadModule cern_meta_module /usr/lib/apache2/modules/mod_cern_meta.so
|
|
@ -0,0 +1 @@
|
|||
LoadModule cgi_module /usr/lib/apache2/modules/mod_cgi.so
|
|
@ -0,0 +1,2 @@
|
|||
# Socket thingy for CGI.
|
||||
ScriptSock /var/run/apache2/cgisock
|
|
@ -0,0 +1 @@
|
|||
LoadModule cgid_module /usr/lib/apache2/modules/mod_cgid.so
|
|
@ -0,0 +1 @@
|
|||
LoadModule dav_module /usr/lib/apache2/modules/mod_dav.so
|
|
@ -0,0 +1,2 @@
|
|||
DAVLockDB /var/lock/apache2/DAVLock
|
||||
|
|
@ -0,0 +1 @@
|
|||
LoadModule dav_fs_module /usr/lib/apache2/modules/mod_dav_fs.so
|
|
@ -0,0 +1 @@
|
|||
LoadModule deflate_module /usr/lib/apache2/modules/mod_deflate.so
|
|
@ -0,0 +1 @@
|
|||
LoadModule disk_cache_module /usr/lib/apache2/modules/mod_disk_cache.so
|
|
@ -0,0 +1 @@
|
|||
LoadModule expires_module /usr/lib/apache2/modules/mod_expires.so
|
|
@ -0,0 +1 @@
|
|||
LoadModule ext_filter_module /usr/lib/apache2/modules/mod_ext_filter.so
|
|
@ -0,0 +1 @@
|
|||
LoadModule file_cache_module /usr/lib/apache2/modules/mod_file_cache.so
|
|
@ -0,0 +1 @@
|
|||
LoadModule headers_module /usr/lib/apache2/modules/mod_headers.so
|
|
@ -0,0 +1 @@
|
|||
LoadModule imap_module /usr/lib/apache2/modules/mod_imap.so
|
|
@ -0,0 +1 @@
|
|||
LoadModule include_module /usr/lib/apache2/modules/mod_include.so
|
|
@ -0,0 +1 @@
|
|||
LoadModule info_module /usr/lib/apache2/modules/mod_info.so
|
|
@ -0,0 +1 @@
|
|||
LoadModule ldap_module /usr/lib/apache2/modules/mod_ldap.so
|
|
@ -0,0 +1 @@
|
|||
LoadModule mem_cache_module /usr/lib/apache2/modules/mod_mem_cache.so
|
|
@ -0,0 +1,3 @@
|
|||
<IfModule mod_mime_magic.c>
|
||||
MIMEMagicFile /usr/share/misc/file/magic.mime
|
||||
</IfModule>
|
|
@ -0,0 +1 @@
|
|||
LoadModule mime_magic_module /usr/lib/apache2/modules/mod_mime_magic.so
|
|
@ -0,0 +1,4 @@
|
|||
<IfModule mod_php4.c>
|
||||
AddType application/x-httpd-php .php .phtml .php3
|
||||
AddType application/x-httpd-php-source .phps
|
||||
</IfModule>
|
|
@ -0,0 +1 @@
|
|||
LoadModule php4_module /usr/lib/apache2/modules/libphp4.so
|
32
noc/monitor.easterhegg.de/apache2/mods-available/proxy.conf
Normal file
32
noc/monitor.easterhegg.de/apache2/mods-available/proxy.conf
Normal 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>
|
|
@ -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
|
|
@ -0,0 +1 @@
|
|||
LoadModule proxy_connect_module /usr/lib/apache2/modules/mod_proxy_connect.so
|
|
@ -0,0 +1 @@
|
|||
LoadModule proxy_ftp_module /usr/lib/apache2/modules/mod_proxy_ftp.so
|
|
@ -0,0 +1 @@
|
|||
LoadModule proxy_http_module /usr/lib/apache2/modules/mod_proxy_http.so
|
|
@ -0,0 +1 @@
|
|||
LoadModule rewrite_module /usr/lib/apache2/modules/mod_rewrite.so
|
|
@ -0,0 +1 @@
|
|||
LoadModule speling_module /usr/lib/apache2/modules/mod_speling.so
|
73
noc/monitor.easterhegg.de/apache2/mods-available/ssl.conf
Normal file
73
noc/monitor.easterhegg.de/apache2/mods-available/ssl.conf
Normal 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>
|
|
@ -0,0 +1 @@
|
|||
LoadModule ssl_module /usr/lib/apache2/modules/mod_ssl.so
|
|
@ -0,0 +1 @@
|
|||
LoadModule suexec_module /usr/lib/apache2/modules/mod_suexec.so
|
|
@ -0,0 +1 @@
|
|||
LoadModule unique_id_module /usr/lib/apache2/modules/mod_unique_id.so
|
|
@ -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>
|
|
@ -0,0 +1 @@
|
|||
LoadModule userdir_module /usr/lib/apache2/modules/mod_userdir.so
|
|
@ -0,0 +1 @@
|
|||
LoadModule usertrack_module /usr/lib/apache2/modules/mod_usertrack.so
|
|
@ -0,0 +1 @@
|
|||
LoadModule vhost_alias_module /usr/lib/apache2/modules/mod_vhost_alias.so
|
1
noc/monitor.easterhegg.de/apache2/mods-enabled/cgi.load
Symbolic link
1
noc/monitor.easterhegg.de/apache2/mods-enabled/cgi.load
Symbolic link
|
@ -0,0 +1 @@
|
|||
../mods-available/cgi.load
|
1
noc/monitor.easterhegg.de/apache2/mods-enabled/include.load
Symbolic link
1
noc/monitor.easterhegg.de/apache2/mods-enabled/include.load
Symbolic link
|
@ -0,0 +1 @@
|
|||
../mods-available/include.load
|
1
noc/monitor.easterhegg.de/apache2/mods-enabled/php4.conf
Symbolic link
1
noc/monitor.easterhegg.de/apache2/mods-enabled/php4.conf
Symbolic link
|
@ -0,0 +1 @@
|
|||
../mods-available/php4.conf
|
1
noc/monitor.easterhegg.de/apache2/mods-enabled/php4.load
Symbolic link
1
noc/monitor.easterhegg.de/apache2/mods-enabled/php4.load
Symbolic link
|
@ -0,0 +1 @@
|
|||
../mods-available/php4.load
|
1
noc/monitor.easterhegg.de/apache2/mods-enabled/userdir.conf
Symbolic link
1
noc/monitor.easterhegg.de/apache2/mods-enabled/userdir.conf
Symbolic link
|
@ -0,0 +1 @@
|
|||
../mods-available/userdir.conf
|
1
noc/monitor.easterhegg.de/apache2/mods-enabled/userdir.load
Symbolic link
1
noc/monitor.easterhegg.de/apache2/mods-enabled/userdir.load
Symbolic link
|
@ -0,0 +1 @@
|
|||
../mods-available/userdir.load
|
1
noc/monitor.easterhegg.de/apache2/ports.conf
Normal file
1
noc/monitor.easterhegg.de/apache2/ports.conf
Normal file
|
@ -0,0 +1 @@
|
|||
Listen 80
|
46
noc/monitor.easterhegg.de/apache2/sites-available/default
Normal file
46
noc/monitor.easterhegg.de/apache2/sites-available/default
Normal file
|
@ -0,0 +1,46 @@
|
|||
NameVirtualHost *
|
||||
<VirtualHost *>
|
||||
ServerAdmin webmaster@localhost
|
||||
|
||||
DocumentRoot /var/www/
|
||||
<Directory />
|
||||
Options FollowSymLinks
|
||||
AllowOverride None
|
||||
</Directory>
|
||||
<Directory /var/www/>
|
||||
Options Indexes FollowSymLinks MultiViews Includes
|
||||
AllowOverride None
|
||||
Order allow,deny
|
||||
allow from all
|
||||
# This directive allows us to have apache2's default start page
|
||||
# in /apache2-default/, but still have / go to the right place
|
||||
#RedirectMatch ^/$ /apache2-default/
|
||||
</Directory>
|
||||
|
||||
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
|
||||
<Directory "/usr/lib/cgi-bin">
|
||||
AllowOverride None
|
||||
Options ExecCGI -MultiViews +SymLinksIfOwnerMatch
|
||||
Order allow,deny
|
||||
Allow from all
|
||||
</Directory>
|
||||
|
||||
ErrorLog /var/log/apache2/error.log
|
||||
|
||||
# Possible values include: debug, info, notice, warn, error, crit,
|
||||
# alert, emerg.
|
||||
LogLevel warn
|
||||
|
||||
CustomLog /var/log/apache2/access.log combined
|
||||
ServerSignature On
|
||||
|
||||
Alias /doc/ "/usr/share/doc/"
|
||||
<Directory "/usr/share/doc/">
|
||||
Options Indexes MultiViews FollowSymLinks
|
||||
AllowOverride None
|
||||
Order deny,allow
|
||||
Deny from all
|
||||
Allow from 127.0.0.0/255.0.0.0 ::1/128
|
||||
</Directory>
|
||||
|
||||
</VirtualHost>
|
1
noc/monitor.easterhegg.de/apache2/sites-enabled/000-default
Symbolic link
1
noc/monitor.easterhegg.de/apache2/sites-enabled/000-default
Symbolic link
|
@ -0,0 +1 @@
|
|||
/etc/apache2/sites-available/default
|
Loading…
Add table
Add a link
Reference in a new issue