Erster commit
This commit is contained in:
commit
f63fea00bb
15
READNE.nd
Normal file
15
READNE.nd
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
Mahlzeit, Zioone!
|
||||||
|
|
||||||
|
Um das zum laufen zu bringen musst du folgendes tun:
|
||||||
|
|
||||||
|
1. Editier die Datei start.sh
|
||||||
|
2. Ersetze dort jedes "/weg/zu/diesem/verzeichnis/" mit dem Pfad zu dem Verzeichnis, in dem "dockerfile" liegt
|
||||||
|
3. sudo docker build -t zioone .
|
||||||
|
4. ./start.sh
|
||||||
|
|
||||||
|
Damit sollte der Webserver laufen und über Port 9090 erreichbar sein. Den kannst du aber in start.sh ändern.
|
||||||
|
|
||||||
|
Deine Webseite legst du in "www" ab.
|
||||||
|
|
||||||
|
Viel Spass damit. Wenn du noch Hilfe brauchst kannst du ja bei https://chat.projekt-hirnfrei.de vorbei schauen.
|
||||||
|
Das dürfte schneller sein als das Forum.
|
51
dockerfile
Normal file
51
dockerfile
Normal file
@ -0,0 +1,51 @@
|
|||||||
|
# Grundlegendes Image
|
||||||
|
FROM alpine:latest
|
||||||
|
|
||||||
|
# Informationen
|
||||||
|
MAINTAINER Dany Thinnes <dany@projekt-hirnfrei.de>
|
||||||
|
|
||||||
|
# Freigaben
|
||||||
|
EXPOSE 80
|
||||||
|
|
||||||
|
# Alles aktualisieren
|
||||||
|
RUN apk add --upgrade apk-tools
|
||||||
|
RUN apk upgrade --available
|
||||||
|
|
||||||
|
# Apache2 und PHP installieren
|
||||||
|
RUN apk add --no-cache apache2
|
||||||
|
RUN apk add --no-cache php-apache2
|
||||||
|
RUN rm /var/www/localhost/htdocs/*
|
||||||
|
|
||||||
|
# Abhängigkeiten installieren
|
||||||
|
RUN apk add --no-cache php-openssl
|
||||||
|
RUN apk add --no-cache php-curl
|
||||||
|
RUN apk add --no-cache php-calendar
|
||||||
|
RUN apk add --no-cache php-gd
|
||||||
|
RUN apk add --no-cache php-pgsql
|
||||||
|
RUN apk add --no-cache php-soap
|
||||||
|
RUN apk add --no-cache php-sodium
|
||||||
|
RUN apk add --no-cache php-session
|
||||||
|
RUN apk add --no-cache php-iconv
|
||||||
|
RUN apk add --no-cache php-zip
|
||||||
|
RUN apk add --no-cache php-simplexml
|
||||||
|
RUN apk add --no-cache php-fpm
|
||||||
|
RUN apk add --no-cache php-mbstring
|
||||||
|
RUN apk add --no-cache php-ctype
|
||||||
|
RUN apk add --no-cache php-xmlwriter
|
||||||
|
|
||||||
|
RUN apk add --no-cache msmtp
|
||||||
|
|
||||||
|
# Postgresql installieren
|
||||||
|
RUN apk add --no-cache postgresql
|
||||||
|
RUN (addgroup -S postgres && adduser -S postgres -G postgres || true)
|
||||||
|
RUN mkdir /run/postgresql
|
||||||
|
RUN chown -R postgres:postgres /run/postgresql
|
||||||
|
|
||||||
|
# Konfigurationen kopieren
|
||||||
|
COPY etc/. /etc
|
||||||
|
|
||||||
|
# Workdir anlegen und Start-Skript kopieren
|
||||||
|
RUN mkdir /work
|
||||||
|
|
||||||
|
# starten
|
||||||
|
ENTRYPOINT ["/work/entrypoint.sh"]
|
70
etc/apache2/conf.d/default.conf
Normal file
70
etc/apache2/conf.d/default.conf
Normal file
@ -0,0 +1,70 @@
|
|||||||
|
#
|
||||||
|
# This configuration file reflects default settings for Apache HTTP Server.
|
||||||
|
#
|
||||||
|
# You may change these, but chances are that you may not need to.
|
||||||
|
#
|
||||||
|
|
||||||
|
#
|
||||||
|
# Timeout: The number of seconds before receives and sends time out.
|
||||||
|
#
|
||||||
|
Timeout 60
|
||||||
|
|
||||||
|
#
|
||||||
|
# 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 5
|
||||||
|
|
||||||
|
#
|
||||||
|
# UseCanonicalName: Determines how Apache constructs self-referencing
|
||||||
|
# URLs and the SERVER_NAME and SERVER_PORT variables.
|
||||||
|
# When set "Off", Apache will use the Hostname and Port supplied
|
||||||
|
# by the client. When set "On", Apache will use the value of the
|
||||||
|
# ServerName directive.
|
||||||
|
#
|
||||||
|
UseCanonicalName Off
|
||||||
|
|
||||||
|
#
|
||||||
|
# AccessFileName: The name of the file to look for in each directory
|
||||||
|
# for additional configuration directives. See also the AllowOverride
|
||||||
|
# directive.
|
||||||
|
#
|
||||||
|
AccessFileName .htaccess
|
||||||
|
|
||||||
|
#
|
||||||
|
# HostnameLookups: Log the names of clients or just their IP addresses
|
||||||
|
# e.g., www.apache.org (on) or 204.62.129.132 (off).
|
||||||
|
# The default is off because it'd be overall better for the net if people
|
||||||
|
# had to knowingly turn this feature on, since enabling it means that
|
||||||
|
# each client request will result in AT LEAST one lookup request to the
|
||||||
|
# nameserver.
|
||||||
|
#
|
||||||
|
HostnameLookups Off
|
||||||
|
|
||||||
|
#
|
||||||
|
# Set a timeout for how long the client may take to send the request header
|
||||||
|
# and body.
|
||||||
|
# The default for the headers is header=20-40,MinRate=500, which means wait
|
||||||
|
# for the first byte of headers for 20 seconds. If some data arrives,
|
||||||
|
# increase the timeout corresponding to a data rate of 500 bytes/s, but not
|
||||||
|
# above 40 seconds.
|
||||||
|
# The default for the request body is body=20,MinRate=500, which is the same
|
||||||
|
# but has no upper limit for the timeout.
|
||||||
|
# To disable, set to header=0 body=0
|
||||||
|
#
|
||||||
|
<IfModule reqtimeout_module>
|
||||||
|
RequestReadTimeout header=20-40,MinRate=500 body=20,MinRate=500
|
||||||
|
</IfModule>
|
40
etc/apache2/conf.d/info.conf
Normal file
40
etc/apache2/conf.d/info.conf
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
#
|
||||||
|
# Get information about the requests being processed by the server
|
||||||
|
# and the configuration of the server.
|
||||||
|
#
|
||||||
|
# Required modules: mod_authz_core, mod_authz_host,
|
||||||
|
# mod_info (for the server-info handler),
|
||||||
|
# mod_status (for the server-status handler)
|
||||||
|
|
||||||
|
<IfModule status_module>
|
||||||
|
#
|
||||||
|
# Allow server status reports generated by mod_status,
|
||||||
|
# with the URL of http://servername/server-status
|
||||||
|
# Change the ".example.com" to match your domain to enable.
|
||||||
|
|
||||||
|
<Location /server-status>
|
||||||
|
SetHandler server-status
|
||||||
|
Require host .example.com
|
||||||
|
Require ip 127
|
||||||
|
</Location>
|
||||||
|
|
||||||
|
#
|
||||||
|
# ExtendedStatus controls whether Apache will generate "full" status
|
||||||
|
# information (ExtendedStatus On) or just basic information (ExtendedStatus
|
||||||
|
# Off) when the "server-status" handler is called. The default is Off.
|
||||||
|
#
|
||||||
|
#ExtendedStatus On
|
||||||
|
</IfModule>
|
||||||
|
|
||||||
|
<IfModule info_module>
|
||||||
|
#
|
||||||
|
# Allow remote server configuration reports, with the URL of
|
||||||
|
# http://servername/server-info (requires that mod_info.c be loaded).
|
||||||
|
# Change the ".example.com" to match your domain to enable.
|
||||||
|
#
|
||||||
|
<Location /server-info>
|
||||||
|
SetHandler server-info
|
||||||
|
Require host .example.com
|
||||||
|
Require ip 127
|
||||||
|
</Location>
|
||||||
|
</IfModule>
|
141
etc/apache2/conf.d/languages.conf
Normal file
141
etc/apache2/conf.d/languages.conf
Normal file
@ -0,0 +1,141 @@
|
|||||||
|
#
|
||||||
|
# Settings for hosting different languages.
|
||||||
|
#
|
||||||
|
# Required modules: mod_mime, mod_negotiation
|
||||||
|
|
||||||
|
# DefaultLanguage and AddLanguage allows you to specify the language of
|
||||||
|
# a document. You can then use content negotiation to give a browser a
|
||||||
|
# file in a language the user can understand.
|
||||||
|
#
|
||||||
|
# Specify a default language. This means that all data
|
||||||
|
# going out without a specific language tag (see below) will
|
||||||
|
# be marked with this one. You probably do NOT want to set
|
||||||
|
# this unless you are sure it is correct for all cases.
|
||||||
|
#
|
||||||
|
# * It is generally better to not mark a page as
|
||||||
|
# * being a certain language than marking it with the wrong
|
||||||
|
# * language!
|
||||||
|
#
|
||||||
|
# DefaultLanguage nl
|
||||||
|
#
|
||||||
|
# Note 1: The suffix does not have to be the same as the language
|
||||||
|
# keyword --- those with documents in Polish (whose net-standard
|
||||||
|
# language code is pl) may wish to use "AddLanguage pl .po" to
|
||||||
|
# avoid the ambiguity with the common suffix for perl scripts.
|
||||||
|
#
|
||||||
|
# Note 2: The example entries below illustrate that in some cases
|
||||||
|
# the two character 'Language' abbreviation is not identical to
|
||||||
|
# the two character 'Country' code for its country,
|
||||||
|
# E.g. 'Danmark/dk' versus 'Danish/da'.
|
||||||
|
#
|
||||||
|
# Note 3: In the case of 'ltz' we violate the RFC by using a three char
|
||||||
|
# specifier. There is 'work in progress' to fix this and get
|
||||||
|
# the reference data for rfc1766 cleaned up.
|
||||||
|
#
|
||||||
|
# Catalan (ca) - Croatian (hr) - Czech (cs) - Danish (da) - Dutch (nl)
|
||||||
|
# English (en) - Esperanto (eo) - Estonian (et) - French (fr) - German (de)
|
||||||
|
# Greek-Modern (el) - Hebrew (he) - Italian (it) - Japanese (ja)
|
||||||
|
# Korean (ko) - Luxembourgeois* (ltz) - Norwegian Nynorsk (nn)
|
||||||
|
# Norwegian (no) - Polish (pl) - Portugese (pt)
|
||||||
|
# Brazilian Portuguese (pt-BR) - Russian (ru) - Swedish (sv)
|
||||||
|
# Turkish (tr) - Simplified Chinese (zh-CN) - Spanish (es)
|
||||||
|
# Traditional Chinese (zh-TW)
|
||||||
|
#
|
||||||
|
AddLanguage ca .ca
|
||||||
|
AddLanguage cs .cz .cs
|
||||||
|
AddLanguage da .dk
|
||||||
|
AddLanguage de .de
|
||||||
|
AddLanguage el .el
|
||||||
|
AddLanguage en .en
|
||||||
|
AddLanguage eo .eo
|
||||||
|
AddLanguage es .es
|
||||||
|
AddLanguage et .et
|
||||||
|
AddLanguage fr .fr
|
||||||
|
AddLanguage he .he
|
||||||
|
AddLanguage hr .hr
|
||||||
|
AddLanguage it .it
|
||||||
|
AddLanguage ja .ja
|
||||||
|
AddLanguage ko .ko
|
||||||
|
AddLanguage ltz .ltz
|
||||||
|
AddLanguage nl .nl
|
||||||
|
AddLanguage nn .nn
|
||||||
|
AddLanguage no .no
|
||||||
|
AddLanguage pl .po
|
||||||
|
AddLanguage pt .pt
|
||||||
|
AddLanguage pt-BR .pt-br
|
||||||
|
AddLanguage ru .ru
|
||||||
|
AddLanguage sv .sv
|
||||||
|
AddLanguage tr .tr
|
||||||
|
AddLanguage zh-CN .zh-cn
|
||||||
|
AddLanguage zh-TW .zh-tw
|
||||||
|
|
||||||
|
# LanguagePriority allows you to give precedence to some languages
|
||||||
|
# in case of a tie during content negotiation.
|
||||||
|
#
|
||||||
|
# Just list the languages in decreasing order of preference. We have
|
||||||
|
# more or less alphabetized them here. You probably want to change this.
|
||||||
|
#
|
||||||
|
LanguagePriority en ca cs da de el eo es et fr he hr it ja ko ltz nl nn no pl pt pt-BR ru sv tr zh-CN zh-TW
|
||||||
|
|
||||||
|
#
|
||||||
|
# ForceLanguagePriority allows you to serve a result page rather than
|
||||||
|
# MULTIPLE CHOICES (Prefer) [in case of a tie] or NOT ACCEPTABLE (Fallback)
|
||||||
|
# [in case no accepted languages matched the available variants]
|
||||||
|
#
|
||||||
|
ForceLanguagePriority Prefer Fallback
|
||||||
|
|
||||||
|
#
|
||||||
|
# Commonly used filename extensions to character sets. You probably
|
||||||
|
# want to avoid clashes with the language extensions, unless you
|
||||||
|
# are good at carefully testing your setup after each change.
|
||||||
|
# See http://www.iana.org/assignments/character-sets for the
|
||||||
|
# official list of charset names and their respective RFCs.
|
||||||
|
#
|
||||||
|
AddCharset us-ascii.ascii .us-ascii
|
||||||
|
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 .cyr .iso-ru
|
||||||
|
AddCharset ISO-8859-6 .iso8859-6 .arb .arabic
|
||||||
|
AddCharset ISO-8859-7 .iso8859-7 .grk .greek
|
||||||
|
AddCharset ISO-8859-8 .iso8859-8 .heb .hebrew
|
||||||
|
AddCharset ISO-8859-9 .iso8859-9 .latin5 .trk
|
||||||
|
AddCharset ISO-8859-10 .iso8859-10 .latin6
|
||||||
|
AddCharset ISO-8859-13 .iso8859-13
|
||||||
|
AddCharset ISO-8859-14 .iso8859-14 .latin8
|
||||||
|
AddCharset ISO-8859-15 .iso8859-15 .latin9
|
||||||
|
AddCharset ISO-8859-16 .iso8859-16 .latin10
|
||||||
|
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 .b5
|
||||||
|
AddCharset cn-Big5 .cn-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 .koi8
|
||||||
|
AddCharset KOI8-E .koi8-e
|
||||||
|
AddCharset KOI8-r .koi8-r .koi8-ru
|
||||||
|
AddCharset KOI8-U .koi8-u
|
||||||
|
AddCharset KOI8-ru .koi8-uk .ua
|
||||||
|
AddCharset ISO-10646-UCS-2 .ucs2
|
||||||
|
AddCharset ISO-10646-UCS-4 .ucs4
|
||||||
|
AddCharset UTF-7 .utf7
|
||||||
|
AddCharset UTF-8 .utf8
|
||||||
|
AddCharset UTF-16 .utf16
|
||||||
|
AddCharset UTF-16BE .utf16be
|
||||||
|
AddCharset UTF-16LE .utf16le
|
||||||
|
AddCharset UTF-32 .utf32
|
||||||
|
AddCharset UTF-32BE .utf32be
|
||||||
|
AddCharset UTF-32LE .utf32le
|
||||||
|
AddCharset euc-cn .euc-cn
|
||||||
|
AddCharset euc-gb .euc-gb
|
||||||
|
AddCharset euc-jp .euc-jp
|
||||||
|
AddCharset euc-kr .euc-kr
|
||||||
|
#Not sure how euc-tw got in - IANA doesn't list it???
|
||||||
|
AddCharset EUC-TW .euc-tw
|
||||||
|
AddCharset gb2312 .gb2312 .gb
|
||||||
|
AddCharset iso-10646-ucs-2 .ucs-2 .iso-10646-ucs-2
|
||||||
|
AddCharset iso-10646-ucs-4 .ucs-4 .iso-10646-ucs-4
|
||||||
|
AddCharset shift_jis .shift_jis .sjis
|
119
etc/apache2/conf.d/mpm.conf
Normal file
119
etc/apache2/conf.d/mpm.conf
Normal file
@ -0,0 +1,119 @@
|
|||||||
|
#
|
||||||
|
# Server-Pool Management (MPM specific)
|
||||||
|
#
|
||||||
|
|
||||||
|
#
|
||||||
|
# PidFile: The file in which the server should record its process
|
||||||
|
# identification number when it starts.
|
||||||
|
#
|
||||||
|
# Note that this is the default PidFile for most MPMs.
|
||||||
|
#
|
||||||
|
<IfModule !mpm_netware_module>
|
||||||
|
PidFile "/run/apache2/httpd.pid"
|
||||||
|
</IfModule>
|
||||||
|
|
||||||
|
#
|
||||||
|
# Only one of the below sections will be relevant on your
|
||||||
|
# installed httpd. Use "apachectl -l" to find out the
|
||||||
|
# active mpm.
|
||||||
|
#
|
||||||
|
|
||||||
|
# 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
|
||||||
|
# MaxRequestWorkers: maximum number of server processes allowed to start
|
||||||
|
# MaxConnectionsPerChild: maximum number of connections a server process serves
|
||||||
|
# before terminating
|
||||||
|
<IfModule mpm_prefork_module>
|
||||||
|
StartServers 5
|
||||||
|
MinSpareServers 5
|
||||||
|
MaxSpareServers 10
|
||||||
|
MaxRequestWorkers 250
|
||||||
|
MaxConnectionsPerChild 0
|
||||||
|
</IfModule>
|
||||||
|
|
||||||
|
# worker MPM
|
||||||
|
# StartServers: initial number of server processes 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
|
||||||
|
# MaxRequestWorkers: maximum number of worker threads
|
||||||
|
# MaxConnectionsPerChild: maximum number of connections a server process serves
|
||||||
|
# before terminating
|
||||||
|
<IfModule mpm_worker_module>
|
||||||
|
StartServers 3
|
||||||
|
MinSpareThreads 75
|
||||||
|
MaxSpareThreads 250
|
||||||
|
ThreadsPerChild 25
|
||||||
|
MaxRequestWorkers 400
|
||||||
|
MaxConnectionsPerChild 0
|
||||||
|
</IfModule>
|
||||||
|
|
||||||
|
# event MPM
|
||||||
|
# StartServers: initial number of server processes 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
|
||||||
|
# MaxRequestWorkers: maximum number of worker threads
|
||||||
|
# MaxConnectionsPerChild: maximum number of connections a server process serves
|
||||||
|
# before terminating
|
||||||
|
<IfModule mpm_event_module>
|
||||||
|
StartServers 3
|
||||||
|
MinSpareThreads 75
|
||||||
|
MaxSpareThreads 250
|
||||||
|
ThreadsPerChild 25
|
||||||
|
MaxRequestWorkers 400
|
||||||
|
MaxConnectionsPerChild 0
|
||||||
|
</IfModule>
|
||||||
|
|
||||||
|
# NetWare MPM
|
||||||
|
# ThreadStackSize: Stack size allocated for each worker thread
|
||||||
|
# StartThreads: Number of worker threads launched at server startup
|
||||||
|
# MinSpareThreads: Minimum number of idle threads, to handle request spikes
|
||||||
|
# MaxSpareThreads: Maximum number of idle threads
|
||||||
|
# MaxThreads: Maximum number of worker threads alive at the same time
|
||||||
|
# MaxConnectionsPerChild: Maximum number of connections a thread serves. It
|
||||||
|
# is recommended that the default value of 0 be set
|
||||||
|
# for this directive on NetWare. This will allow the
|
||||||
|
# thread to continue to service requests indefinitely.
|
||||||
|
<IfModule mpm_netware_module>
|
||||||
|
ThreadStackSize 65536
|
||||||
|
StartThreads 250
|
||||||
|
MinSpareThreads 25
|
||||||
|
MaxSpareThreads 250
|
||||||
|
MaxThreads 1000
|
||||||
|
MaxConnectionsPerChild 0
|
||||||
|
</IfModule>
|
||||||
|
|
||||||
|
# OS/2 MPM
|
||||||
|
# StartServers: Number of server processes to maintain
|
||||||
|
# MinSpareThreads: Minimum number of idle threads per process,
|
||||||
|
# to handle request spikes
|
||||||
|
# MaxSpareThreads: Maximum number of idle threads per process
|
||||||
|
# MaxConnectionsPerChild: Maximum number of connections per server process
|
||||||
|
<IfModule mpm_mpmt_os2_module>
|
||||||
|
StartServers 2
|
||||||
|
MinSpareThreads 5
|
||||||
|
MaxSpareThreads 10
|
||||||
|
MaxConnectionsPerChild 0
|
||||||
|
</IfModule>
|
||||||
|
|
||||||
|
# WinNT MPM
|
||||||
|
# ThreadsPerChild: constant number of worker threads in the server process
|
||||||
|
# MaxConnectionsPerChild: maximum number of connections a server process serves
|
||||||
|
<IfModule mpm_winnt_module>
|
||||||
|
ThreadsPerChild 150
|
||||||
|
MaxConnectionsPerChild 0
|
||||||
|
</IfModule>
|
||||||
|
|
||||||
|
# The maximum number of free Kbytes that every allocator is allowed
|
||||||
|
# to hold without calling free(). In threaded MPMs, every thread has its own
|
||||||
|
# allocator. When not set, or when set to zero, the threshold will be set to
|
||||||
|
# unlimited.
|
||||||
|
<IfModule !mpm_netware_module>
|
||||||
|
MaxMemFree 2048
|
||||||
|
</IfModule>
|
||||||
|
<IfModule mpm_netware_module>
|
||||||
|
MaxMemFree 100
|
||||||
|
</IfModule>
|
13
etc/apache2/conf.d/php8-module.conf
Normal file
13
etc/apache2/conf.d/php8-module.conf
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
LoadModule php_module modules/mod_php8.so
|
||||||
|
|
||||||
|
DirectoryIndex index.php index.html
|
||||||
|
|
||||||
|
<FilesMatch \.php$>
|
||||||
|
SetHandler application/x-httpd-php
|
||||||
|
</FilesMatch>
|
||||||
|
|
||||||
|
# Uncomment the following to allow .phps files to be handled by the php source filter,
|
||||||
|
# and displayed as syntax-highlighted source code
|
||||||
|
#<FilesMatch "\.phps$">
|
||||||
|
# SetHandler application/x-httpd-php-source
|
||||||
|
#</FilesMatch>
|
23
etc/apache2/conf.d/userdir.conf
Normal file
23
etc/apache2/conf.d/userdir.conf
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
<IfModule userdir_module>
|
||||||
|
# Settings for user home directories
|
||||||
|
#
|
||||||
|
# Required module: mod_authz_core, mod_authz_host, mod_userdir
|
||||||
|
|
||||||
|
#
|
||||||
|
# UserDir: The name of the directory that is appended onto a user's home
|
||||||
|
# directory if a ~user request is received. Note that you must also set
|
||||||
|
# the default access control for these directories, as in the example below.
|
||||||
|
#
|
||||||
|
UserDir public_html
|
||||||
|
|
||||||
|
#
|
||||||
|
# Control access to UserDir directories. The following is an example
|
||||||
|
# for a site where these directories are restricted to read-only.
|
||||||
|
#
|
||||||
|
<Directory "/home/*/public_html">
|
||||||
|
AllowOverride FileInfo AuthConfig Limit Indexes
|
||||||
|
Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
|
||||||
|
Require method GET POST OPTIONS
|
||||||
|
</Directory>
|
||||||
|
|
||||||
|
</IfModule>
|
482
etc/apache2/httpd.conf
Normal file
482
etc/apache2/httpd.conf
Normal file
@ -0,0 +1,482 @@
|
|||||||
|
#
|
||||||
|
# This is the main Apache HTTP server configuration file. It contains the
|
||||||
|
# configuration directives that give the server its instructions.
|
||||||
|
# See <URL:http://httpd.apache.org/docs/2.4/> for detailed information.
|
||||||
|
# In particular, see
|
||||||
|
# <URL:http://httpd.apache.org/docs/2.4/mod/directives.html>
|
||||||
|
# for a discussion of each configuration directive.
|
||||||
|
#
|
||||||
|
# Do NOT simply read the instructions in here without understanding
|
||||||
|
# what they do. They're here only as hints or reminders. If you are unsure
|
||||||
|
# consult the online docs. You have been warned.
|
||||||
|
#
|
||||||
|
# Configuration and logfile names: If the filenames you specify for many
|
||||||
|
# of the server's control files begin with "/" (or "drive:/" for Win32), the
|
||||||
|
# server will use that explicit path. If the filenames do *not* begin
|
||||||
|
# with "/", the value of ServerRoot is prepended -- so "logs/access_log"
|
||||||
|
# with ServerRoot set to "/usr/local/apache2" will be interpreted by the
|
||||||
|
# server as "/usr/local/apache2/logs/access_log", whereas "/logs/access_log"
|
||||||
|
# will be interpreted as '/logs/access_log'.
|
||||||
|
|
||||||
|
#
|
||||||
|
# ServerTokens
|
||||||
|
# This directive configures what you return as the Server HTTP response
|
||||||
|
# Header. The default is 'Full' which sends information about the OS-Type
|
||||||
|
# and compiled in modules.
|
||||||
|
# Set to one of: Full | OS | Minor | Minimal | Major | Prod
|
||||||
|
# where Full conveys the most information, and Prod the least.
|
||||||
|
#
|
||||||
|
ServerTokens OS
|
||||||
|
|
||||||
|
#
|
||||||
|
# ServerRoot: The top of the directory tree under which the server's
|
||||||
|
# configuration, error, and log files are kept.
|
||||||
|
#
|
||||||
|
# Do not add a slash at the end of the directory path. If you point
|
||||||
|
# ServerRoot at a non-local disk, be sure to specify a local disk on the
|
||||||
|
# Mutex directive, if file-based mutexes are used. If you wish to share the
|
||||||
|
# same ServerRoot for multiple httpd daemons, you will need to change at
|
||||||
|
# least PidFile.
|
||||||
|
#
|
||||||
|
ServerRoot /var/www
|
||||||
|
|
||||||
|
#
|
||||||
|
# Mutex: Allows you to set the mutex mechanism and mutex file directory
|
||||||
|
# for individual mutexes, or change the global defaults
|
||||||
|
#
|
||||||
|
# Uncomment and change the directory if mutexes are file-based and the default
|
||||||
|
# mutex file directory is not on a local disk or is not appropriate for some
|
||||||
|
# other reason.
|
||||||
|
#
|
||||||
|
# Mutex default:/run/apache2
|
||||||
|
|
||||||
|
#
|
||||||
|
# Listen: Allows you to bind Apache to specific IP addresses and/or
|
||||||
|
# ports, instead of the default. See also the <VirtualHost>
|
||||||
|
# directive.
|
||||||
|
#
|
||||||
|
# Change this to Listen on specific IP addresses as shown below to
|
||||||
|
# prevent Apache from glomming onto all bound IP addresses.
|
||||||
|
#
|
||||||
|
#Listen 12.34.56.78:80
|
||||||
|
Listen 80
|
||||||
|
|
||||||
|
#
|
||||||
|
# Dynamic Shared Object (DSO) Support
|
||||||
|
#
|
||||||
|
# To be able to use the functionality of a module which was built as a DSO you
|
||||||
|
# have to place corresponding `LoadModule' lines at this location so the
|
||||||
|
# directives contained in it are actually available _before_ they are used.
|
||||||
|
# Statically compiled modules (those listed by `httpd -l') do not need
|
||||||
|
# to be loaded here.
|
||||||
|
#
|
||||||
|
# Example:
|
||||||
|
# LoadModule foo_module modules/mod_foo.so
|
||||||
|
#
|
||||||
|
#LoadModule mpm_event_module modules/mod_mpm_event.so
|
||||||
|
LoadModule mpm_prefork_module modules/mod_mpm_prefork.so
|
||||||
|
#LoadModule mpm_worker_module modules/mod_mpm_worker.so
|
||||||
|
LoadModule authn_file_module modules/mod_authn_file.so
|
||||||
|
#LoadModule authn_dbm_module modules/mod_authn_dbm.so
|
||||||
|
#LoadModule authn_anon_module modules/mod_authn_anon.so
|
||||||
|
#LoadModule authn_dbd_module modules/mod_authn_dbd.so
|
||||||
|
#LoadModule authn_socache_module modules/mod_authn_socache.so
|
||||||
|
LoadModule authn_core_module modules/mod_authn_core.so
|
||||||
|
LoadModule authz_host_module modules/mod_authz_host.so
|
||||||
|
LoadModule authz_groupfile_module modules/mod_authz_groupfile.so
|
||||||
|
LoadModule authz_user_module modules/mod_authz_user.so
|
||||||
|
#LoadModule authz_dbm_module modules/mod_authz_dbm.so
|
||||||
|
#LoadModule authz_owner_module modules/mod_authz_owner.so
|
||||||
|
#LoadModule authz_dbd_module modules/mod_authz_dbd.so
|
||||||
|
LoadModule authz_core_module modules/mod_authz_core.so
|
||||||
|
LoadModule access_compat_module modules/mod_access_compat.so
|
||||||
|
LoadModule auth_basic_module modules/mod_auth_basic.so
|
||||||
|
#LoadModule auth_form_module modules/mod_auth_form.so
|
||||||
|
#LoadModule auth_digest_module modules/mod_auth_digest.so
|
||||||
|
#LoadModule allowmethods_module modules/mod_allowmethods.so
|
||||||
|
#LoadModule file_cache_module modules/mod_file_cache.so
|
||||||
|
#LoadModule cache_module modules/mod_cache.so
|
||||||
|
#LoadModule cache_disk_module modules/mod_cache_disk.so
|
||||||
|
#LoadModule cache_socache_module modules/mod_cache_socache.so
|
||||||
|
#LoadModule socache_shmcb_module modules/mod_socache_shmcb.so
|
||||||
|
#LoadModule socache_dbm_module modules/mod_socache_dbm.so
|
||||||
|
#LoadModule socache_memcache_module modules/mod_socache_memcache.so
|
||||||
|
#LoadModule socache_redis_module modules/mod_socache_redis.so
|
||||||
|
#LoadModule watchdog_module modules/mod_watchdog.so
|
||||||
|
#LoadModule macro_module modules/mod_macro.so
|
||||||
|
#LoadModule dbd_module modules/mod_dbd.so
|
||||||
|
#LoadModule dumpio_module modules/mod_dumpio.so
|
||||||
|
#LoadModule echo_module modules/mod_echo.so
|
||||||
|
#LoadModule buffer_module modules/mod_buffer.so
|
||||||
|
#LoadModule data_module modules/mod_data.so
|
||||||
|
#LoadModule ratelimit_module modules/mod_ratelimit.so
|
||||||
|
LoadModule reqtimeout_module modules/mod_reqtimeout.so
|
||||||
|
#LoadModule ext_filter_module modules/mod_ext_filter.so
|
||||||
|
#LoadModule request_module modules/mod_request.so
|
||||||
|
#LoadModule include_module modules/mod_include.so
|
||||||
|
LoadModule filter_module modules/mod_filter.so
|
||||||
|
#LoadModule reflector_module modules/mod_reflector.so
|
||||||
|
#LoadModule substitute_module modules/mod_substitute.so
|
||||||
|
#LoadModule sed_module modules/mod_sed.so
|
||||||
|
#LoadModule charset_lite_module modules/mod_charset_lite.so
|
||||||
|
#LoadModule deflate_module modules/mod_deflate.so
|
||||||
|
#LoadModule brotli_module modules/mod_brotli.so
|
||||||
|
LoadModule mime_module modules/mod_mime.so
|
||||||
|
LoadModule log_config_module modules/mod_log_config.so
|
||||||
|
#LoadModule log_debug_module modules/mod_log_debug.so
|
||||||
|
#LoadModule log_forensic_module modules/mod_log_forensic.so
|
||||||
|
#LoadModule logio_module modules/mod_logio.so
|
||||||
|
LoadModule env_module modules/mod_env.so
|
||||||
|
#LoadModule mime_magic_module modules/mod_mime_magic.so
|
||||||
|
#LoadModule expires_module modules/mod_expires.so
|
||||||
|
LoadModule headers_module modules/mod_headers.so
|
||||||
|
#LoadModule usertrack_module modules/mod_usertrack.so
|
||||||
|
#LoadModule unique_id_module modules/mod_unique_id.so
|
||||||
|
LoadModule setenvif_module modules/mod_setenvif.so
|
||||||
|
LoadModule version_module modules/mod_version.so
|
||||||
|
#LoadModule remoteip_module modules/mod_remoteip.so
|
||||||
|
#LoadModule session_module modules/mod_session.so
|
||||||
|
#LoadModule session_cookie_module modules/mod_session_cookie.so
|
||||||
|
#LoadModule session_crypto_module modules/mod_session_crypto.so
|
||||||
|
#LoadModule session_dbd_module modules/mod_session_dbd.so
|
||||||
|
#LoadModule slotmem_shm_module modules/mod_slotmem_shm.so
|
||||||
|
#LoadModule slotmem_plain_module modules/mod_slotmem_plain.so
|
||||||
|
#LoadModule dialup_module modules/mod_dialup.so
|
||||||
|
#LoadModule http2_module modules/mod_http2.so
|
||||||
|
LoadModule unixd_module modules/mod_unixd.so
|
||||||
|
#LoadModule heartbeat_module modules/mod_heartbeat.so
|
||||||
|
#LoadModule heartmonitor_module modules/mod_heartmonitor.so
|
||||||
|
LoadModule status_module modules/mod_status.so
|
||||||
|
LoadModule autoindex_module modules/mod_autoindex.so
|
||||||
|
#LoadModule asis_module modules/mod_asis.so
|
||||||
|
#LoadModule info_module modules/mod_info.so
|
||||||
|
#LoadModule suexec_module modules/mod_suexec.so
|
||||||
|
<IfModule !mpm_prefork_module>
|
||||||
|
#LoadModule cgid_module modules/mod_cgid.so
|
||||||
|
</IfModule>
|
||||||
|
<IfModule mpm_prefork_module>
|
||||||
|
#LoadModule cgi_module modules/mod_cgi.so
|
||||||
|
</IfModule>
|
||||||
|
#LoadModule vhost_alias_module modules/mod_vhost_alias.so
|
||||||
|
#LoadModule negotiation_module modules/mod_negotiation.so
|
||||||
|
LoadModule dir_module modules/mod_dir.so
|
||||||
|
#LoadModule actions_module modules/mod_actions.so
|
||||||
|
#LoadModule speling_module modules/mod_speling.so
|
||||||
|
#LoadModule userdir_module modules/mod_userdir.so
|
||||||
|
LoadModule alias_module modules/mod_alias.so
|
||||||
|
#LoadModule rewrite_module modules/mod_rewrite.so
|
||||||
|
|
||||||
|
LoadModule negotiation_module modules/mod_negotiation.so
|
||||||
|
|
||||||
|
<IfModule unixd_module>
|
||||||
|
#
|
||||||
|
# If you wish httpd to run as a different user or group, you must run
|
||||||
|
# httpd as root initially and it will switch.
|
||||||
|
#
|
||||||
|
# User/Group: The name (or #number) of the user/group to run httpd as.
|
||||||
|
# It is usually good practice to create a dedicated user and group for
|
||||||
|
# running httpd, as with most system services.
|
||||||
|
#
|
||||||
|
User apache
|
||||||
|
Group apache
|
||||||
|
|
||||||
|
</IfModule>
|
||||||
|
|
||||||
|
# 'Main' server configuration
|
||||||
|
#
|
||||||
|
# The directives in this section set up the values used by the 'main'
|
||||||
|
# server, which responds to any requests that aren't handled by a
|
||||||
|
# <VirtualHost> definition. These values also provide defaults for
|
||||||
|
# any <VirtualHost> containers you may define later in the file.
|
||||||
|
#
|
||||||
|
# All of these directives may appear inside <VirtualHost> containers,
|
||||||
|
# in which case these default settings will be overridden for the
|
||||||
|
# virtual host being defined.
|
||||||
|
#
|
||||||
|
|
||||||
|
#
|
||||||
|
# ServerAdmin: Your address, where problems with the server should be
|
||||||
|
# e-mailed. This address appears on some server-generated pages, such
|
||||||
|
# as error documents. e.g. admin@your-domain.com
|
||||||
|
#
|
||||||
|
ServerAdmin you@example.com
|
||||||
|
|
||||||
|
#
|
||||||
|
# Optionally add a line containing the server version and virtual host
|
||||||
|
# name to server-generated pages (internal error documents, FTP directory
|
||||||
|
# listings, mod_status and mod_info output etc., but not CGI generated
|
||||||
|
# documents or custom error documents).
|
||||||
|
# Set to "EMail" to also include a mailto: link to the ServerAdmin.
|
||||||
|
# Set to one of: On | Off | EMail
|
||||||
|
#
|
||||||
|
ServerSignature On
|
||||||
|
|
||||||
|
#
|
||||||
|
# ServerName gives the name and port that the server uses to identify itself.
|
||||||
|
# This can often be determined automatically, but we recommend you specify
|
||||||
|
# it explicitly to prevent problems during startup.
|
||||||
|
#
|
||||||
|
# If your host doesn't have a registered DNS name, enter its IP address here.
|
||||||
|
#
|
||||||
|
#ServerName www.example.com:80
|
||||||
|
|
||||||
|
#
|
||||||
|
# Deny access to the entirety of your server's filesystem. You must
|
||||||
|
# explicitly permit access to web content directories in other
|
||||||
|
# <Directory> blocks below.
|
||||||
|
#
|
||||||
|
<Directory />
|
||||||
|
AllowOverride none
|
||||||
|
Require all denied
|
||||||
|
</Directory>
|
||||||
|
|
||||||
|
#
|
||||||
|
# Note that from this point forward you must specifically allow
|
||||||
|
# particular features to be enabled - so if something's not working as
|
||||||
|
# you might expect, make sure that you have specifically enabled it
|
||||||
|
# below.
|
||||||
|
#
|
||||||
|
|
||||||
|
#
|
||||||
|
# DocumentRoot: The directory out of which you will serve your
|
||||||
|
# documents. By default, all requests are taken from this directory, but
|
||||||
|
# symbolic links and aliases may be used to point to other locations.
|
||||||
|
#
|
||||||
|
DocumentRoot "/var/www/localhost/htdocs"
|
||||||
|
<Directory "/var/www/localhost/htdocs">
|
||||||
|
#
|
||||||
|
# Possible values for the Options directive are "None", "All",
|
||||||
|
# or any combination of:
|
||||||
|
# Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
|
||||||
|
#
|
||||||
|
# Note that "MultiViews" must be named *explicitly* --- "Options All"
|
||||||
|
# doesn't give it to you.
|
||||||
|
#
|
||||||
|
# The Options directive is both complicated and important. Please see
|
||||||
|
# http://httpd.apache.org/docs/2.4/mod/core.html#options
|
||||||
|
# for more information.
|
||||||
|
#
|
||||||
|
Options Indexes FollowSymLinks
|
||||||
|
|
||||||
|
#
|
||||||
|
# AllowOverride controls what directives may be placed in .htaccess files.
|
||||||
|
# It can be "All", "None", or any combination of the keywords:
|
||||||
|
# AllowOverride FileInfo AuthConfig Limit
|
||||||
|
#
|
||||||
|
AllowOverride None
|
||||||
|
|
||||||
|
#
|
||||||
|
# Controls who can get stuff from this server.
|
||||||
|
#
|
||||||
|
Require all granted
|
||||||
|
</Directory>
|
||||||
|
|
||||||
|
#
|
||||||
|
# DirectoryIndex: sets the file that Apache will serve if a directory
|
||||||
|
# is requested.
|
||||||
|
#
|
||||||
|
<IfModule dir_module>
|
||||||
|
DirectoryIndex index.html
|
||||||
|
</IfModule>
|
||||||
|
|
||||||
|
#
|
||||||
|
# The following lines prevent .htaccess and .htpasswd files from being
|
||||||
|
# viewed by Web clients.
|
||||||
|
#
|
||||||
|
<Files ".ht*">
|
||||||
|
Require all denied
|
||||||
|
</Files>
|
||||||
|
|
||||||
|
#
|
||||||
|
# ErrorLog: The location of the error log file.
|
||||||
|
# If you do not specify an ErrorLog directive within a <VirtualHost>
|
||||||
|
# container, error messages relating to that virtual host will be
|
||||||
|
# logged here. If you *do* define an error logfile for a <VirtualHost>
|
||||||
|
# container, that host's errors will be logged there and not here.
|
||||||
|
#
|
||||||
|
ErrorLog logs/error.log
|
||||||
|
|
||||||
|
#
|
||||||
|
# LogLevel: Control the number of messages logged to the error_log.
|
||||||
|
# Possible values include: debug, info, notice, warn, error, crit,
|
||||||
|
# alert, emerg.
|
||||||
|
#
|
||||||
|
LogLevel warn
|
||||||
|
|
||||||
|
<IfModule log_config_module>
|
||||||
|
#
|
||||||
|
# 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
|
||||||
|
|
||||||
|
<IfModule logio_module>
|
||||||
|
# You need to enable mod_logio.c to use %I and %O
|
||||||
|
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
|
||||||
|
</IfModule>
|
||||||
|
|
||||||
|
#
|
||||||
|
# The location and format of the access logfile (Common Logfile Format).
|
||||||
|
# If you do not define any access logfiles within a <VirtualHost>
|
||||||
|
# container, they will be logged here. Contrariwise, if you *do*
|
||||||
|
# define per-<VirtualHost> access logfiles, transactions will be
|
||||||
|
# logged therein and *not* in this file.
|
||||||
|
#
|
||||||
|
#CustomLog logs/access.log common
|
||||||
|
|
||||||
|
#
|
||||||
|
# If you prefer a logfile with access, agent, and referer information
|
||||||
|
# (Combined Logfile Format) you can use the following directive.
|
||||||
|
#
|
||||||
|
CustomLog logs/access.log combined
|
||||||
|
</IfModule>
|
||||||
|
|
||||||
|
<IfModule alias_module>
|
||||||
|
#
|
||||||
|
# Redirect: Allows you to tell clients about documents that used to
|
||||||
|
# exist in your server's namespace, but do not anymore. The client
|
||||||
|
# will make a new request for the document at its new location.
|
||||||
|
# Example:
|
||||||
|
# Redirect permanent /foo http://www.example.com/bar
|
||||||
|
|
||||||
|
#
|
||||||
|
# Alias: Maps web paths into filesystem paths and is used to
|
||||||
|
# access content that does not live under the DocumentRoot.
|
||||||
|
# Example:
|
||||||
|
# Alias /webpath /full/filesystem/path
|
||||||
|
#
|
||||||
|
# If you include a trailing / on /webpath then the server will
|
||||||
|
# require it to be present in the URL. You will also likely
|
||||||
|
# need to provide a <Directory> section to allow access to
|
||||||
|
# the filesystem path.
|
||||||
|
|
||||||
|
#
|
||||||
|
# ScriptAlias: This controls which directories contain server scripts.
|
||||||
|
# ScriptAliases are essentially the same as Aliases, except that
|
||||||
|
# documents in the target directory are treated as applications and
|
||||||
|
# run by the server when requested rather than as documents sent to the
|
||||||
|
# client. The same rules about trailing "/" apply to ScriptAlias
|
||||||
|
# directives as to Alias.
|
||||||
|
#
|
||||||
|
ScriptAlias /cgi-bin/ "/var/www/localhost/cgi-bin/"
|
||||||
|
|
||||||
|
</IfModule>
|
||||||
|
|
||||||
|
<IfModule cgid_module>
|
||||||
|
#
|
||||||
|
# ScriptSock: On threaded servers, designate the path to the UNIX
|
||||||
|
# socket used to communicate with the CGI daemon of mod_cgid.
|
||||||
|
#
|
||||||
|
#Scriptsock cgisock
|
||||||
|
</IfModule>
|
||||||
|
|
||||||
|
#
|
||||||
|
# "/var/www/localhost/cgi-bin" should be changed to whatever your ScriptAliased
|
||||||
|
# CGI directory exists, if you have that configured.
|
||||||
|
#
|
||||||
|
<Directory "/var/www/localhost/cgi-bin">
|
||||||
|
AllowOverride None
|
||||||
|
Options None
|
||||||
|
Require all granted
|
||||||
|
</Directory>
|
||||||
|
|
||||||
|
<IfModule headers_module>
|
||||||
|
#
|
||||||
|
# Avoid passing HTTP_PROXY environment to CGI's on this or any proxied
|
||||||
|
# backend servers which have lingering "httpoxy" defects.
|
||||||
|
# 'Proxy' request header is undefined by the IETF, not listed by IANA
|
||||||
|
#
|
||||||
|
RequestHeader unset Proxy early
|
||||||
|
</IfModule>
|
||||||
|
|
||||||
|
<IfModule mime_module>
|
||||||
|
#
|
||||||
|
# TypesConfig points to the file containing the list of mappings from
|
||||||
|
# filename extension to MIME-type.
|
||||||
|
#
|
||||||
|
TypesConfig /etc/apache2/mime.types
|
||||||
|
|
||||||
|
#
|
||||||
|
# AddType allows you to add to or override the MIME configuration
|
||||||
|
# file specified in TypesConfig for specific file types.
|
||||||
|
#
|
||||||
|
#AddType application/x-gzip .tgz
|
||||||
|
#
|
||||||
|
# AddEncoding allows you to have certain browsers uncompress
|
||||||
|
# information on the fly. Note: Not all browsers support this.
|
||||||
|
#
|
||||||
|
#AddEncoding x-compress .Z
|
||||||
|
#AddEncoding x-gzip .gz .tgz
|
||||||
|
#
|
||||||
|
# If the AddEncoding directives above are commented-out, then you
|
||||||
|
# probably should define those extensions to indicate media types:
|
||||||
|
#
|
||||||
|
AddType application/x-compress .Z
|
||||||
|
AddType application/x-gzip .gz .tgz
|
||||||
|
|
||||||
|
#
|
||||||
|
# AddHandler allows you to map certain file extensions to "handlers":
|
||||||
|
# actions unrelated to filetype. These can be either built into the server
|
||||||
|
# or added with the Action directive (see below)
|
||||||
|
#
|
||||||
|
# To use CGI scripts outside of ScriptAliased directories:
|
||||||
|
# (You will also need to add "ExecCGI" to the "Options" directive.)
|
||||||
|
#
|
||||||
|
#AddHandler cgi-script .cgi
|
||||||
|
|
||||||
|
# For type maps (negotiated resources):
|
||||||
|
#AddHandler type-map var
|
||||||
|
|
||||||
|
#
|
||||||
|
# Filters allow you to process content before it is sent to the client.
|
||||||
|
#
|
||||||
|
# To parse .shtml files for server-side includes (SSI):
|
||||||
|
# (You will also need to add "Includes" to the "Options" directive.)
|
||||||
|
#
|
||||||
|
#AddType text/html .shtml
|
||||||
|
#AddOutputFilter INCLUDES .shtml
|
||||||
|
</IfModule>
|
||||||
|
|
||||||
|
#
|
||||||
|
# The mod_mime_magic module allows the server to use various hints from the
|
||||||
|
# contents of the file itself to determine its type. The MIMEMagicFile
|
||||||
|
# directive tells the module where the hint definitions are located.
|
||||||
|
#
|
||||||
|
<IfModule mime_magic_module>
|
||||||
|
MIMEMagicFile /etc/apache2/magic
|
||||||
|
</IfModule>
|
||||||
|
|
||||||
|
#
|
||||||
|
# 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
|
||||||
|
#
|
||||||
|
|
||||||
|
#
|
||||||
|
# MaxRanges: Maximum number of Ranges in a request before
|
||||||
|
# returning the entire resource, or one of the special
|
||||||
|
# values 'default', 'none' or 'unlimited'.
|
||||||
|
# Default setting is to accept 200 Ranges.
|
||||||
|
#MaxRanges unlimited
|
||||||
|
|
||||||
|
#
|
||||||
|
# EnableMMAP and EnableSendfile: On systems that support it,
|
||||||
|
# memory-mapping or the sendfile syscall may be used to deliver
|
||||||
|
# files. This usually improves server performance, but must
|
||||||
|
# be turned off when serving from networked-mounted
|
||||||
|
# filesystems or if support for these functions is otherwise
|
||||||
|
# broken on your system.
|
||||||
|
# Defaults: EnableMMAP On, EnableSendfile Off
|
||||||
|
#
|
||||||
|
#EnableMMAP off
|
||||||
|
#EnableSendfile on
|
||||||
|
|
||||||
|
# Load config files from the config directory "/etc/apache2/conf.d".
|
||||||
|
#
|
||||||
|
IncludeOptional /etc/apache2/conf.d/*.conf
|
385
etc/apache2/magic
Normal file
385
etc/apache2/magic
Normal file
@ -0,0 +1,385 @@
|
|||||||
|
# Magic data for mod_mime_magic Apache module (originally for file(1) command)
|
||||||
|
# The module is described in /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
|
||||||
|
# - WAVE format
|
||||||
|
>8 string WAVE audio/x-wav
|
||||||
|
# MPEG audio.
|
||||||
|
0 beshort&0xfff0 0xfff0 audio/mpeg
|
||||||
|
# C64 SID Music files, from Linus Walleij <triad@df.lth.se>
|
||||||
|
0 string PSID audio/prs.sid
|
||||||
|
|
||||||
|
#------------------------------------------------------------------------------
|
||||||
|
# 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
|
||||||
|
|
||||||
|
# XML eXtensible Markup Language, from Linus Walleij <triad@df.lth.se>
|
||||||
|
0 string \<?xml text/xml
|
||||||
|
|
||||||
|
#------------------------------------------------------------------------------
|
||||||
|
# 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
|
||||||
|
|
||||||
|
0 string \x89PNG image/png
|
||||||
|
0 string FWS application/x-shockwave-flash
|
||||||
|
0 string CWS application/x-shockwave-flash
|
||||||
|
|
||||||
|
#------------------------------------------------------------------------------
|
||||||
|
# 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
|
||||||
|
# Quicktime video, from Linus Walleij <triad@df.lth.se>
|
||||||
|
# from Apple quicktime file format documentation.
|
||||||
|
4 string moov video/quicktime
|
||||||
|
4 string mdat video/quicktime
|
||||||
|
|
1855
etc/apache2/mime.types
Normal file
1855
etc/apache2/mime.types
Normal file
File diff suppressed because it is too large
Load Diff
10
etc/msmtp-system.conf
Normal file
10
etc/msmtp-system.conf
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
account uniteddomains
|
||||||
|
logfile /var/log/msmtp.log
|
||||||
|
tls on
|
||||||
|
tls_certcheck off
|
||||||
|
auth on
|
||||||
|
host smtp.udag.de
|
||||||
|
port 587
|
||||||
|
user kursdatis-de-0001
|
||||||
|
from system@kursdatis.de
|
||||||
|
password kursDatisDD0
|
11
etc/msmtprc
Normal file
11
etc/msmtprc
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
account default
|
||||||
|
logfile /var/log/msmtp.log
|
||||||
|
tls on
|
||||||
|
tls_certcheck off
|
||||||
|
auth on
|
||||||
|
host smtp.udag.de
|
||||||
|
port 587
|
||||||
|
user kursdatis-de-0001
|
||||||
|
from system@kursdatis.de
|
||||||
|
password kursDatisDD0
|
||||||
|
|
1947
etc/php8/php.ini
Normal file
1947
etc/php8/php.ini
Normal file
File diff suppressed because it is too large
Load Diff
1
start.sh
Executable file
1
start.sh
Executable file
@ -0,0 +1 @@
|
|||||||
|
docker run -p 9090:80 -v /weg/zu/diesem/verzeichnis/log:/var/www/logs -v /weg/zu/diesem/verzeichnis/work/.:/work -v /weg/zu/diesem/verzeichnis/www/.:/var/www/localhost/htdocs -v /weg/zu/diesem/verzeichnis/postgresql/.:/var/lib/postgresql zioone
|
0
work/CONTAINER_FIRST_STARTUP
Normal file
0
work/CONTAINER_FIRST_STARTUP
Normal file
14
work/entrypoint.sh
Executable file
14
work/entrypoint.sh
Executable file
@ -0,0 +1,14 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
CONTAINER_FIRST_STARTUP="CONTAINER_FIRST_STARTUP"
|
||||||
|
|
||||||
|
if [ ! -e /work/$CONTAINER_FIRST_STARTUP ]; then
|
||||||
|
touch /work/$CONTAINER_FIRST_STARTUP
|
||||||
|
su - postgres -c "initdb /var/lib/postgresql/data"
|
||||||
|
su - postgres -c "pg_ctl start -D /var/lib/postgresql/data -l /var/lib/postgresql/log.log"
|
||||||
|
su - postgres -c "psql --command \"create user kurs with superuser password 'HerrErbe';\""
|
||||||
|
else
|
||||||
|
su - postgres -c "pg_ctl start -D /var/lib/postgresql/data -l /var/lib/postgresql/log.log"
|
||||||
|
fi
|
||||||
|
|
||||||
|
/usr/sbin/httpd -D FOREGROUND -f /etc/apache2/httpd.conf
|
Loading…
Reference in New Issue
Block a user