File: //etc/apache24/httpd.conf.20220904120629
#
# 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'.
#
# 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 "/usr/iports"
#
# 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:/var/run/apache
PidFile /var/run/apache/httpd24.pid
#
# 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 83.138.87.173: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 authn_file_module libexec/apache24/mod_authn_file.so
#LoadModule authn_dbm_module libexec/apache24/mod_authn_dbm.so
#LoadModule authn_anon_module libexec/apache24/mod_authn_anon.so
#LoadModule authn_dbd_module libexec/apache24/mod_authn_dbd.so
#LoadModule authn_socache_module libexec/apache24/mod_authn_socache.so
LoadModule authn_core_module libexec/apache24/mod_authn_core.so
LoadModule authz_host_module libexec/apache24/mod_authz_host.so
LoadModule authz_groupfile_module libexec/apache24/mod_authz_groupfile.so
LoadModule authz_user_module libexec/apache24/mod_authz_user.so
#LoadModule authz_dbm_module libexec/apache24/mod_authz_dbm.so
#LoadModule authz_owner_module libexec/apache24/mod_authz_owner.so
#LoadModule authz_dbd_module libexec/apache24/mod_authz_dbd.so
LoadModule authz_core_module libexec/apache24/mod_authz_core.so
LoadModule access_compat_module libexec/apache24/mod_access_compat.so
LoadModule auth_basic_module libexec/apache24/mod_auth_basic.so
#LoadModule auth_form_module libexec/apache24/mod_auth_form.so
#LoadModule auth_digest_module libexec/apache24/mod_auth_digest.so
#LoadModule allowmethods_module libexec/apache24/mod_allowmethods.so
#LoadModule file_cache_module libexec/apache24/mod_file_cache.so
#LoadModule cache_module libexec/apache24/mod_cache.so
#LoadModule cache_disk_module libexec/apache24/mod_cache_disk.so
#LoadModule cache_socache_module libexec/apache24/mod_cache_socache.so
LoadModule socache_shmcb_module libexec/apache24/mod_socache_shmcb.so
LoadModule socache_dbm_module libexec/apache24/mod_socache_dbm.so
#LoadModule socache_memcache_module libexec/apache24/mod_socache_memcache.so
#LoadModule macro_module libexec/apache24/mod_macro.so
#LoadModule dbd_module libexec/apache24/mod_dbd.so
#LoadModule dumpio_module libexec/apache24/mod_dumpio.so
#LoadModule buffer_module libexec/apache24/mod_buffer.so
#LoadModule ratelimit_module libexec/apache24/mod_ratelimit.so
LoadModule reqtimeout_module libexec/apache24/mod_reqtimeout.so
#LoadModule ext_filter_module libexec/apache24/mod_ext_filter.so
#LoadModule request_module libexec/apache24/mod_request.so
#LoadModule include_module libexec/apache24/mod_include.so
LoadModule filter_module libexec/apache24/mod_filter.so
#LoadModule substitute_module libexec/apache24/mod_substitute.so
#LoadModule sed_module libexec/apache24/mod_sed.so
LoadModule deflate_module libexec/apache24/mod_deflate.so
LoadModule mime_module libexec/apache24/mod_mime.so
LoadModule log_config_module libexec/apache24/mod_log_config.so
LoadModule log_debug_module libexec/apache24/mod_log_debug.so
#LoadModule logio_module libexec/apache24/mod_logio.so
LoadModule env_module libexec/apache24/mod_env.so
#LoadModule mime_magic_module libexec/apache24/mod_mime_magic.so
#LoadModule cern_meta_module libexec/apache24/mod_cern_meta.so
LoadModule expires_module libexec/apache24/mod_expires.so
LoadModule headers_module libexec/apache24/mod_headers.so
#LoadModule unique_id_module libexec/apache24/mod_unique_id.so
LoadModule setenvif_module libexec/apache24/mod_setenvif.so
LoadModule version_module libexec/apache24/mod_version.so
#LoadModule remoteip_module libexec/apache24/mod_remoteip.so
LoadModule proxy_module libexec/apache24/mod_proxy.so
#LoadModule proxy_connect_module libexec/apache24/mod_proxy_connect.so
#LoadModule proxy_ftp_module libexec/apache24/mod_proxy_ftp.so
LoadModule proxy_http_module libexec/apache24/mod_proxy_http.so
#LoadModule proxy_fcgi_module libexec/apache24/mod_proxy_fcgi.so
#LoadModule proxy_scgi_module libexec/apache24/mod_proxy_scgi.so
#LoadModule proxy_wstunnel_module libexec/apache24/mod_proxy_wstunnel.so
#LoadModule proxy_ajp_module libexec/apache24/mod_proxy_ajp.so
#LoadModule proxy_balancer_module libexec/apache24/mod_proxy_balancer.so
#LoadModule proxy_express_module libexec/apache24/mod_proxy_express.so
#LoadModule session_module libexec/apache24/mod_session.so
#LoadModule session_cookie_module libexec/apache24/mod_session_cookie.so
#LoadModule session_crypto_module libexec/apache24/mod_session_crypto.so
LoadModule ssl_module libexec/apache24/mod_ssl.so
#LoadModule lbmethod_byrequests_module libexec/apache24/mod_lbmethod_byrequests.so
#LoadModule lbmethod_bytraffic_module libexec/apache24/mod_lbmethod_bytraffic.so
#LoadModule lbmethod_bybusyness_module libexec/apache24/mod_lbmethod_bybusyness.so
#LoadModule mpm_worker_module libexec/apache24/mod_mpm_worker.so
LoadModule mpm_event_module libexec/apache24/mod_mpm_event.so
#LoadModule mpm_prefork_module libexec/apache24/mod_mpm_prefork.so
LoadModule http2_module libexec/apache24/mod_http2.so
LoadModule unixd_module libexec/apache24/mod_unixd.so
LoadModule dav_module libexec/apache24/mod_dav.so
LoadModule status_module libexec/apache24/mod_status.so
LoadModule autoindex_module libexec/apache24/mod_autoindex.so
#LoadModule asis_module libexec/apache24/mod_asis.so
#LoadModule info_module libexec/apache24/mod_info.so
LoadModule suexec_module libexec/apache24/mod_suexec.so
#LoadModule cgid_module libexec/apache24/mod_cgid.so
LoadModule cgi_module libexec/apache24/mod_cgi.so
LoadModule dav_fs_module libexec/apache24/mod_dav_fs.so
#LoadModule anonip_module libexec/apache24/mod_anonip.so
#LoadModule vhost_alias_module libexec/apache24/mod_vhost_alias.so
#LoadModule negotiation_module libexec/apache24/mod_negotiation.so
LoadModule dir_module libexec/apache24/mod_dir.so
#LoadModule imagemap_module libexec/apache24/mod_imagemap.so
#LoadModule actions_module libexec/apache24/mod_actions.so
#LoadModule speling_module libexec/apache24/mod_speling.so
#LoadModule userdir_module libexec/apache24/mod_userdir.so
LoadModule alias_module libexec/apache24/mod_alias.so
LoadModule rewrite_module libexec/apache24/mod_rewrite.so
#
# WARNING - be aware that all mod_php modules are NOT threadsafe.
# WARNING - So mpm_prefork_module must be the only mpm in combination
# WARNING - with mod_php modules
#
# php55
#LoadModule php5_module libexec/apache24/libphp5.so
# php56
#LoadModule php5_module libexec/apache24/libphp56.so
# php70
#LoadModule php7_module libexec/apache24/libphp7.so
# php71
#LoadModule php7_module libexec/apache24/libphp71.so
# php72
#LoadModule php7_module libexec/apache24/libphp72.so
# php73
#LoadModule php7_module libexec/apache24/libphp73.so
# php74
#LoadModule php7_module libexec/apache24/libphp74.so
#
LoadModule fcgid_module libexec/apache24/mod_fcgid.so
LoadModule authnz_external_module libexec/apache24/mod_authnz_external.so
<IfModule fcgid_module>
FcgidMinProcessesPerClass 0
FcgidFixPathinfo 1
FcgidIPCDir /var/run/apache
FcgidInitialEnv PHP_FCGI_MAX_REQUESTS 500
FcgidMaxRequestsPerProcess 500
FcgidMaxRequestLen 536870912
FcgidBusyTimeout 3600
FcgidIOTimeout 300
FcgidConnectTimeout 300
FcgidOutputBufferSize 0
<Location />
AddHandler fcgid-script .php
Options +ExecCGI -Indexes
# php55
#FcgidWrapper /usr/iports/bin/php-cgi
# php56
#FcgidWrapper /usr/iports/php56/bin/php-cgi
# php70
FcgidWrapper /usr/iports/php70/bin/php-cgi
# php71
#FcgidWrapper /usr/iports/php71/bin/php-cgi
# php71
#FcgidWrapper /usr/iports/php71/bin/php-cgi
# php72
#FcgidWrapper /usr/iports/php72/bin/php-cgi
# php73
#FcgidWrapper /usr/iports/php73/bin/php-cgi
# php74
#FcgidWrapper /usr/iports/php74/bin/php-cgi
</Location>
</IfModule>
<IfModule http2_module>
ProtocolsHonorOrder On
Protocols h2c h2 http/1.1
</IfModule>
# Enable mod_anonip above, if you really(!!) want to anonymize logging
# According to http://www.onlinemarketingrecht.de/2016/01/die-neue-eu-datenschutzgrundverordnung-eu-dsgvo-ein-blick-auf-die-neuregelungen-aus-der-sicht-der-onlinebranche/
# you don't have to anonyimze logging to comply to General Data Protection Regulation (GDPR) (EU) 2016/679
<IfModule mod_anonip.c>
AnonipMask 2
</IfModule>
<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 web
Group vuser
</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 webmaster@salazo.han-solo.net
#
# 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 salazo.han-solo.net: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.
#
# WARNING!
# ...../noexec is a nullfs mount of ...../data with a noexec flag
# So do not(!) change this to ...../data if you don't have an VERY
# important reason as this opens some security risks.
#
# WARNING!
# As we use vhosts, no DocumentRoot entry must be in this main
# section.
#
#
<Directory "/usr/local/www/apache24/noexec">
#
# 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 All
#
# 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 index.php index.htm index.php3
</IfModule>
#
# The following lines prevent .htaccess and .htpasswd files from being
# viewed by Web clients.
#
<Files ".ht*">
Require all denied
Order allow,deny
Deny from all
</Files>
<IfModule php5_module>
AddType application/x-httpd-php-source .phps
# AddType application/x-httpd-php .php .htm .html
AddType application/x-httpd-php .php
</IfModule>
<IfModule php7_module>
AddType application/x-httpd-php-source .phps
# AddType application/x-httpd-php .php .htm .html
AddType application/x-httpd-php .php
</IfModule>
#
# 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 "/var/log/apache/httpd-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>
BufferedLogs On
#
# 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 "/var/log/apache/httpd-access.log" common
#
# If you prefer a logfile with access, agent, and referer information
# (Combined Logfile Format) you can use the following directive.
#
CustomLog "/var/log/apache/httpd-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/ "/usr/local/www/apache24/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>
#
# "/usr/local/www/apache24/cgi-bin" should be changed to whatever your ScriptAliased
# CGI directory exists, if you have that configured.
#
<Directory "/usr/local/www/apache24/cgi-bin">
AllowOverride None
Options None -Indexes
Require all granted
</Directory>
<IfModule mime_module>
#
# TypesConfig points to the file containing the list of mappings from
# filename extension to MIME-type.
#
TypesConfig /etc/apache24/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>
#####################################################
# CONFIGURE media caching & compression
#
<IfModule mod_headers.c>
Header unset ETag
</IfModule>
FileETag None
<FilesMatch "\.(ico|flv|jpg|jpeg|png|gif|js|css|cssimage)$">
Header set Cache-Control "max-age=2592000,private,no-transform"
</FilesMatch>
# NEVER CACHE
<FilesMatch "\.(html|htm|php|cgi|pl)$">
Header set Cache-Control "max-age=0,private,no-store,no-cache,must-revalidate"
</FilesMatch>
<IfModule mod_deflate.c>
SetOutputFilter DEFLATE
SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary
SetEnvIfNoCase Request_URI \.(?:exe|t?gz|zip|bz2|sit|rar)$ no-gzip dont-vary
SetEnvIfNoCase Request_URI \.pdf$ no-gzip dont-vary
BrowserMatch ^Mozilla/4 gzip-only-text/html
BrowserMatch ^Mozilla/4\.0[678] no-gzip
BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
# Make sure proxies don't deliver the wrong content
Header append Vary User-Agent env=!dont-vary
</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.
#
#MIMEMagicFile etc/apache24/magic
#
# 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
# Supplemental configuration
#
# The configuration files in the etc/apache24/extra/ directory can be
# included to add extra features or to modify the default configuration of
# the server, or you may simply copy their contents here and change as
# necessary.
# Server-pool management (MPM specific)
Include etc/apache24/extra/httpd-mpm.conf
# Multi-language error messages
#Include etc/apache24/extra/httpd-multilang-errordoc.conf
# Fancy directory listings
#Include etc/apache24/extra/httpd-autoindex.conf
# Language settings
#Include etc/apache24/extra/httpd-languages.conf
# User home directories
#Include etc/apache24/extra/httpd-userdir.conf
# Real-time info on requests and configuration
#Include etc/apache24/extra/httpd-info.conf
# Virtual hosts
#Include etc/apache24/extra/httpd-vhosts.conf
# Local access to the Apache HTTP Server Manual
#Include etc/apache24/extra/httpd-manual.conf
# Distributed authoring and versioning (WebDAV)
#Include etc/apache24/extra/httpd-dav.conf
# Various default settings
#Include etc/apache24/extra/httpd-default.conf
# Enable z-push
#Include etc/apache24/extra/z-push.conf
# Enable roundcube
Include etc/apache24/extra/roundcube.conf
# Enable phpmyadmin
Include etc/apache24/extra/phpmyadmin.conf
# Enable awstats
Include etc/apache24/extra/awstats.conf
# Load environment vars
Include etc/apache24/extra/envvars.conf
# shell2ban.web2ban
Include etc/apache24/extra/web2ban.conf
# Configure mod_proxy_html to understand HTML4/XHTML1
<IfModule proxy_html_module>
Include etc/apache24/extra/proxy-html.conf
</IfModule>
# Secure (SSL/TLS) connections
<IfModule ssl_module>
Include etc/apache24/extra/httpd-ssl.conf
</IfModule>
#
# Note: The following must must be present to support
# starting without SSL on platforms with no /dev/random equivalent
# but a statically compiled-in mod_ssl.
#
<IfModule ssl_module>
SSLRandomSeed startup builtin
SSLRandomSeed connect builtin
</IfModule>
#
# uncomment out the below to deal with user agents that deliberately
# violate open standards by misusing DNT (DNT *must* be a specific
# end-user choice)
#
#<IfModule setenvif_module>
#BrowserMatch "MSIE 10.0;" bad_DNT
#</IfModule>
#<IfModule headers_module>
#RequestHeader unset DNT env=bad_DNT
#</IfModule>
Include etc/apache24/Includes/*.conf
# pass mod_rewrite allow letsencrypt
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteOptions InheritDownBefore
RewriteCond %{REQUEST_URI} "^\/?\.well-known\/acme-challenge"
RewriteRule . - [END]
</IfModule>
# pass mod_auth allow letsencrypt
<IfModule mod_auth_basic.c>
<LocationMatch "^\/?\.well-known\/acme-challenge">
Satisfy Any
</LocationMatch>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerName salazo.han-solo.net
Alias /easytecc /usr/local/www/apache24/noexec/easytecc4
<IfModule suexec_module>
SuexecUserGroup admin vuser
<IfModule fcgid_module>
<Location />
FcgidWrapper /usr/local/www/apache24/data/easytecc4/php-cgi
</Location>
</IfModule>
</IfModule>
DocumentRoot "/usr/local/www/apache24/noexec"
RewriteEngine On
RewriteCond %{REQUEST_URI} !^/(easytecc(4)?|usertool|userdocs|\.well-known)
RewriteCond %{REQUEST_URI} !^/(cgi-bin/easytecc4|index.html|err403.php$)
RewriteCond %{REQUEST_URI} !^/(roundcube|webmail|mysql|phpmyadmin|awstats.*|stats) [NC]
RewriteRule .* - [F]
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:https]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
ErrorDocument 403 /err403.php
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/alpen
ServerName www.alpen-urlaub.de
ServerAlias alpen-urlaub.de www.alpen-urlaub.de
CustomLog /home/web/log/access_log_alpen-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.alpen-urlaub.de/awstats/awstats.pl?config=alpen-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:http]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/alpen-urlaub.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/alpen-urlaub.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/alpen-urlaub.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/alpen
ServerName www.alpen-urlaub.de
ServerAlias alpen-urlaub.de www.alpen-urlaub.de
CustomLog /home/web/log/access_log_alpen-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.alpen-urlaub.de/awstats/awstats.pl?config=alpen-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:http]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:20
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/elektrolidke
ServerName www.elektro-lidke.de
ServerAlias elektro-lidke.de www.elektro-lidke.de
CustomLog /home/web/log/access_log_elektro-lidke.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.elektro-lidke.de/awstats/awstats.pl?config=elektro-lidke.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:http]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/elektro-lidke.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/elektro-lidke.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/elektro-lidke.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/elektrolidke
ServerName www.elektro-lidke.de
ServerAlias elektro-lidke.de www.elektro-lidke.de
CustomLog /home/web/log/access_log_elektro-lidke.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.elektro-lidke.de/awstats/awstats.pl?config=elektro-lidke.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:http]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
#POP:0
#FOR:1
#AUT:0
#QUOT:50
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/fotosharz
ServerName www.foto-vom-harz.de
ServerAlias foto-vom-harz.de www.foto-vom-harz.de
CustomLog /home/web/log/access_log_foto-vom-harz.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.foto-vom-harz.de/awstats/awstats.pl?config=foto-vom-harz.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:http]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/foto-vom-harz.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/foto-vom-harz.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/foto-vom-harz.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/fotosharz
ServerName www.foto-vom-harz.de
ServerAlias foto-vom-harz.de www.foto-vom-harz.de
CustomLog /home/web/log/access_log_foto-vom-harz.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.foto-vom-harz.de/awstats/awstats.pl?config=foto-vom-harz.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:http]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:250
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/gernrode
ServerName www.gernrode-harz.de
ServerAlias gernrode-harz.de www.gernrode-harz.de
CustomLog /home/web/log/access_log_gernrode-harz.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.gernrode-harz.de/awstats/awstats.pl?config=gernrode-harz.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:http]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/gernrode-harz.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/gernrode-harz.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/gernrode-harz.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/gernrode
ServerName www.gernrode-harz.de
ServerAlias gernrode-harz.de www.gernrode-harz.de
CustomLog /home/web/log/access_log_gernrode-harz.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.gernrode-harz.de/awstats/awstats.pl?config=gernrode-harz.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:http]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:10
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin kontakt@harz-ferienwohnung-trautenstein.de
DocumentRoot /usr/local/www/apache24/noexec/fewo-heindorf
ServerName www.harz-ferienwohnung-trautenstein.de
ServerAlias harz-ferienwohnung-trautenstein.de www.harz-ferienwohnung-trautenstein.de
CustomLog /home/web/log/access_log_harz-ferienwohnung-trautenstein.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.harz-ferienwohnung-trautenstein.de/awstats/awstats.pl?config=harz-ferienwohnung-trautenstein.de
<IfModule fcgid_module>
<Location />
FcgidWrapper /usr/iports/php74/bin/php-cgi
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:http]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/harz-ferienwohnung-trautenstein.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/harz-ferienwohnung-trautenstein.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/harz-ferienwohnung-trautenstein.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin kontakt@harz-ferienwohnung-trautenstein.de
DocumentRoot /usr/local/www/apache24/noexec/fewo-heindorf
ServerName www.harz-ferienwohnung-trautenstein.de
ServerAlias harz-ferienwohnung-trautenstein.de www.harz-ferienwohnung-trautenstein.de
CustomLog /home/web/log/access_log_harz-ferienwohnung-trautenstein.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.harz-ferienwohnung-trautenstein.de/awstats/awstats.pl?config=harz-ferienwohnung-trautenstein.de
<IfModule fcgid_module>
<Location />
FcgidWrapper /usr/iports/php74/bin/php-cgi
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:http]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
#POP:1
#FOR:1
#AUT:0
#QUOT:1000
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzgeschichte
ServerName www.harz-geschichte.de
ServerAlias harz-geschichte.de www.harz-geschichte.de
CustomLog /home/web/log/access_log_harz-geschichte.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.harz-geschichte.de/awstats/awstats.pl?config=harz-geschichte.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:http]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/harz-geschichte.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/harz-geschichte.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/harz-geschichte.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzgeschichte
ServerName www.harz-geschichte.de
ServerAlias harz-geschichte.de www.harz-geschichte.de
CustomLog /home/web/log/access_log_harz-geschichte.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.harz-geschichte.de/awstats/awstats.pl?config=harz-geschichte.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:http]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:50
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin kontakt@harz-ferienwohnung-trautenstein.de
DocumentRoot /usr/local/www/apache24/noexec/trautenstein
ServerName www.harz-trautenstein.de
ServerAlias harz-trautenstein.de www.harz-trautenstein.de
CustomLog /home/web/log/access_log_harz-trautenstein.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.harz-trautenstein.de/awstats/awstats.pl?config=harz-trautenstein.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:http]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/harz-trautenstein.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/harz-trautenstein.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/harz-trautenstein.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin kontakt@harz-ferienwohnung-trautenstein.de
DocumentRoot /usr/local/www/apache24/noexec/trautenstein
ServerName www.harz-trautenstein.de
ServerAlias harz-trautenstein.de www.harz-trautenstein.de
CustomLog /home/web/log/access_log_harz-trautenstein.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.harz-trautenstein.de/awstats/awstats.pl?config=harz-trautenstein.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:http]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
#POP:0
#FOR:1
#AUT:0
#QUOT:100
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/fewoharznet
ServerName www.ferienwohnung-harz.net
ServerAlias ferienwohnung-harz.net www.ferienwohnung-harz.net
CustomLog /home/web/log/access_log_ferienwohnung-harz.net combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.ferienwohnung-harz.net/awstats/awstats.pl?config=ferienwohnung-harz.net
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:http]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/ferienwohnung-harz.net/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/ferienwohnung-harz.net/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/ferienwohnung-harz.net/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/fewoharznet
ServerName www.ferienwohnung-harz.net
ServerAlias ferienwohnung-harz.net www.ferienwohnung-harz.net
CustomLog /home/web/log/access_log_ferienwohnung-harz.net combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.ferienwohnung-harz.net/awstats/awstats.pl?config=ferienwohnung-harz.net
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:http]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
#POP:0
#FOR:1
#AUT:0
#QUOT:50
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/gleesner
ServerName www.haustechnik-thale.de
ServerAlias haustechnik-thale.de www.haustechnik-thale.de
CustomLog /home/web/log/access_log_haustechnik-thale.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.haustechnik-thale.de/awstats/awstats.pl?config=haustechnik-thale.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:http]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/haustechnik-thale.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/haustechnik-thale.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/haustechnik-thale.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/gleesner
ServerName www.haustechnik-thale.de
ServerAlias haustechnik-thale.de www.haustechnik-thale.de
CustomLog /home/web/log/access_log_haustechnik-thale.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.haustechnik-thale.de/awstats/awstats.pl?config=haustechnik-thale.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:http]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
#POP:0
#FOR:1
#AUT:0
#QUOT:10
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/ausflugsziele
ServerName www.ausflugsziele-harz.de
ServerAlias ausflugsziele-harz.de www.ausflugsziele-harz.de
CustomLog /home/web/log/access_log_ausflugsziele-harz.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.ausflugsziele-harz.de/awstats/awstats.pl?config=ausflugsziele-harz.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:http]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/ausflugsziele-harz.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/ausflugsziele-harz.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/ausflugsziele-harz.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/ausflugsziele
ServerName www.ausflugsziele-harz.de
ServerAlias ausflugsziele-harz.de www.ausflugsziele-harz.de
CustomLog /home/web/log/access_log_ausflugsziele-harz.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.ausflugsziele-harz.de/awstats/awstats.pl?config=ausflugsziele-harz.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:http]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:500
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/ausflugsburgen
ServerName www.burgen.ausflugsziele-harz.de
ServerAlias burgen.ausflugsziele-harz.de www.burgen.ausflugsziele-harz.de
CustomLog /home/web/log/access_log_burgen.ausflugsziele-harz.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.burgen.ausflugsziele-harz.de/awstats/awstats.pl?config=burgen.ausflugsziele-harz.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:http]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/burgen.ausflugsziele-harz.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/burgen.ausflugsziele-harz.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/burgen.ausflugsziele-harz.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/ausflugsburgen
ServerName www.burgen.ausflugsziele-harz.de
ServerAlias burgen.ausflugsziele-harz.de www.burgen.ausflugsziele-harz.de
CustomLog /home/web/log/access_log_burgen.ausflugsziele-harz.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.burgen.ausflugsziele-harz.de/awstats/awstats.pl?config=burgen.ausflugsziele-harz.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:http]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:300
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/ausflugswissen
ServerName www.wissenswertes.ausflugsziele-harz.de
ServerAlias wissenswertes.ausflugsziele-harz.de www.wissenswertes.ausflugsziele-harz.de
CustomLog /home/web/log/access_log_wissenswertes.ausflugsziele-harz.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.wissenswertes.ausflugsziele-harz.de/awstats/awstats.pl?config=wissenswertes.ausflugsziele-harz.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:http]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/wissenswertes.ausflugsziele-harz.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/wissenswertes.ausflugsziele-harz.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/wissenswertes.ausflugsziele-harz.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/ausflugswissen
ServerName www.wissenswertes.ausflugsziele-harz.de
ServerAlias wissenswertes.ausflugsziele-harz.de www.wissenswertes.ausflugsziele-harz.de
CustomLog /home/web/log/access_log_wissenswertes.ausflugsziele-harz.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.wissenswertes.ausflugsziele-harz.de/awstats/awstats.pl?config=wissenswertes.ausflugsziele-harz.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:http]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:500
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/varusschlacht
ServerName www.varusschlacht-am-harz.harz-geschichte.de
ServerAlias varusschlacht-am-harz.harz-geschichte.de www.varusschlacht-am-harz.harz-geschichte.de
CustomLog /home/web/log/access_log_varusschlacht-am-harz.harz-geschichte.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.varusschlacht-am-harz.harz-geschichte.de/awstats/awstats.pl?config=varusschlacht-am-harz.harz-geschichte.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:http]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/varusschlacht-am-harz.harz-geschichte.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/varusschlacht-am-harz.harz-geschichte.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/varusschlacht-am-harz.harz-geschichte.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/varusschlacht
ServerName www.varusschlacht-am-harz.harz-geschichte.de
ServerAlias varusschlacht-am-harz.harz-geschichte.de www.varusschlacht-am-harz.harz-geschichte.de
CustomLog /home/web/log/access_log_varusschlacht-am-harz.harz-geschichte.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.varusschlacht-am-harz.harz-geschichte.de/awstats/awstats.pl?config=varusschlacht-am-harz.harz-geschichte.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:http]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:50
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin s.sternal@sternal-media.de
DocumentRoot /usr/local/www/apache24/noexec/fewo-hirschhausen.de
ServerName www.fewo-hirschhausen.de
ServerAlias fewo-hirschhausen.de www.fewo-hirschhausen.de
CustomLog /home/web/log/access_log_fewo-hirschhausen.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.fewo-hirschhausen.de/awstats/awstats.pl?config=fewo-hirschhausen.de
<IfModule fcgid_module>
<Location />
FcgidWrapper /usr/iports/php74/bin/php-cgi
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:http]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/fewo-hirschhausen.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/fewo-hirschhausen.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/fewo-hirschhausen.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin s.sternal@sternal-media.de
DocumentRoot /usr/local/www/apache24/noexec/fewo-hirschhausen.de
ServerName www.fewo-hirschhausen.de
ServerAlias fewo-hirschhausen.de www.fewo-hirschhausen.de
CustomLog /home/web/log/access_log_fewo-hirschhausen.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.fewo-hirschhausen.de/awstats/awstats.pl?config=fewo-hirschhausen.de
<IfModule fcgid_module>
<Location />
FcgidWrapper /usr/iports/php74/bin/php-cgi
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:http]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
#POP:0
#FOR:2
#AUT:0
#QUOT:50
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/bergfeld
ServerName www.gaertnerei-bergfeld.de
ServerAlias gaertnerei-bergfeld.de www.gaertnerei-bergfeld.de
CustomLog /home/web/log/access_log_gaertnerei-bergfeld.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.gaertnerei-bergfeld.de/awstats/awstats.pl?config=gaertnerei-bergfeld.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:http]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/gaertnerei-bergfeld.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/gaertnerei-bergfeld.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/gaertnerei-bergfeld.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/bergfeld
ServerName www.gaertnerei-bergfeld.de
ServerAlias gaertnerei-bergfeld.de www.gaertnerei-bergfeld.de
CustomLog /home/web/log/access_log_gaertnerei-bergfeld.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.gaertnerei-bergfeld.de/awstats/awstats.pl?config=gaertnerei-bergfeld.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:http]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:10
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/fewoharzbahn
ServerName www.gasthaus-zur-harzbahn.de
ServerAlias gasthaus-zur-harzbahn.de www.gasthaus-zur-harzbahn.de ferienwohnung-zur-harzbahn.harz-urlaub.de www.ferienwohnung-zur-harzbahn.harz-urlaub.de
CustomLog /home/web/log/access_log_gasthaus-zur-harzbahn.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.gasthaus-zur-harzbahn.de/awstats/awstats.pl?config=gasthaus-zur-harzbahn.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:http]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/gasthaus-zur-harzbahn.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/gasthaus-zur-harzbahn.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/gasthaus-zur-harzbahn.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/fewoharzbahn
ServerName www.gasthaus-zur-harzbahn.de
ServerAlias gasthaus-zur-harzbahn.de www.gasthaus-zur-harzbahn.de ferienwohnung-zur-harzbahn.harz-urlaub.de www.ferienwohnung-zur-harzbahn.harz-urlaub.de
CustomLog /home/web/log/access_log_gasthaus-zur-harzbahn.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.gasthaus-zur-harzbahn.de/awstats/awstats.pl?config=gasthaus-zur-harzbahn.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:http]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
#POP:0
#FOR:1
#AUT:0
#QUOT:100
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/gfnharz
ServerName www.gfn-harz.de
ServerAlias gfn-harz.de www.gfn-harz.de
CustomLog /home/web/log/access_log_gfn-harz.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.gfn-harz.de/awstats/awstats.pl?config=gfn-harz.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:http]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/gfn-harz.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/gfn-harz.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/gfn-harz.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/gfnharz
ServerName www.gfn-harz.de
ServerAlias gfn-harz.de www.gfn-harz.de
CustomLog /home/web/log/access_log_gfn-harz.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.gfn-harz.de/awstats/awstats.pl?config=gfn-harz.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:http]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
#POP:0
#FOR:1
#AUT:0
#QUOT:100000
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/fewogrimm
ServerName www.grimm-ferienwohnung.de
ServerAlias grimm-ferienwohnung.de www.grimm-ferienwohnung.de
CustomLog /home/web/log/access_log_grimm-ferienwohnung.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.grimm-ferienwohnung.de/awstats/awstats.pl?config=grimm-ferienwohnung.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:http]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/grimm-ferienwohnung.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/grimm-ferienwohnung.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/grimm-ferienwohnung.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/fewogrimm
ServerName www.grimm-ferienwohnung.de
ServerAlias grimm-ferienwohnung.de www.grimm-ferienwohnung.de
CustomLog /home/web/log/access_log_grimm-ferienwohnung.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.grimm-ferienwohnung.de/awstats/awstats.pl?config=grimm-ferienwohnung.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:http]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
#POP:0
#FOR:1
#AUT:0
#QUOT:50
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin s.sternal@sternal-media.de
DocumentRoot /usr/local/www/apache24/noexec/klettern-harz
ServerName www.klettern-im-harz.de
ServerAlias klettern-im-harz.de www.klettern-im-harz.de
CustomLog /home/web/log/access_log_klettern-im-harz.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.klettern-im-harz.de/awstats/awstats.pl?config=klettern-im-harz.de
<IfModule fcgid_module>
<Location />
FcgidWrapper /usr/iports/php74/bin/php-cgi
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:http]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/klettern-im-harz.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/klettern-im-harz.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/klettern-im-harz.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin s.sternal@sternal-media.de
DocumentRoot /usr/local/www/apache24/noexec/klettern-harz
ServerName www.klettern-im-harz.de
ServerAlias klettern-im-harz.de www.klettern-im-harz.de
CustomLog /home/web/log/access_log_klettern-im-harz.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.klettern-im-harz.de/awstats/awstats.pl?config=klettern-im-harz.de
<IfModule fcgid_module>
<Location />
FcgidWrapper /usr/iports/php74/bin/php-cgi
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:http]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:10
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/ostseeurlaubport
ServerName www.ostsee-urlaub-portal.de
ServerAlias ostsee-urlaub-portal.de www.ostsee-urlaub-portal.de
CustomLog /home/web/log/access_log_ostsee-urlaub-portal.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.ostsee-urlaub-portal.de/awstats/awstats.pl?config=ostsee-urlaub-portal.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:http]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/ostsee-urlaub-portal.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/ostsee-urlaub-portal.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/ostsee-urlaub-portal.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/ostseeurlaubport
ServerName www.ostsee-urlaub-portal.de
ServerAlias ostsee-urlaub-portal.de www.ostsee-urlaub-portal.de
CustomLog /home/web/log/access_log_ostsee-urlaub-portal.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.ostsee-urlaub-portal.de/awstats/awstats.pl?config=ostsee-urlaub-portal.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:http]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:150
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/steimecke
ServerName www.steimecke.de
ServerAlias steimecke.de www.steimecke.de
CustomLog /home/web/log/access_log_steimecke.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.steimecke.de/awstats/awstats.pl?config=steimecke.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:http]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/steimecke.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/steimecke.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/steimecke.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/steimecke
ServerName www.steimecke.de
ServerAlias steimecke.de www.steimecke.de
CustomLog /home/web/log/access_log_steimecke.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.steimecke.de/awstats/awstats.pl?config=steimecke.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:http]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
#POP:0
#FOR:1
#AUT:0
#QUOT:20
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/tierheim-qlb
ServerName www.tierheim-quedlinburg.de
ServerAlias tierheim-quedlinburg.de www.tierheim-quedlinburg.de
CustomLog /home/web/log/access_log_tierheim-quedlinburg.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.tierheim-quedlinburg.de/awstats/awstats.pl?config=tierheim-quedlinburg.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:http]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/tierheim-quedlinburg.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/tierheim-quedlinburg.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/tierheim-quedlinburg.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/tierheim-qlb
ServerName www.tierheim-quedlinburg.de
ServerAlias tierheim-quedlinburg.de www.tierheim-quedlinburg.de
CustomLog /home/web/log/access_log_tierheim-quedlinburg.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.tierheim-quedlinburg.de/awstats/awstats.pl?config=tierheim-quedlinburg.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:http]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:10
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/wanderreiten
ServerName www.wanderreiten-harz.de
ServerAlias wanderreiten-harz.de www.wanderreiten-harz.de
CustomLog /home/web/log/access_log_wanderreiten-harz.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.wanderreiten-harz.de/awstats/awstats.pl?config=wanderreiten-harz.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:http]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/wanderreiten-harz.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/wanderreiten-harz.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/wanderreiten-harz.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/wanderreiten
ServerName www.wanderreiten-harz.de
ServerAlias wanderreiten-harz.de www.wanderreiten-harz.de
CustomLog /home/web/log/access_log_wanderreiten-harz.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.wanderreiten-harz.de/awstats/awstats.pl?config=wanderreiten-harz.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:http]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:50
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/becherer
ServerName www.bedachung-becherer.de
ServerAlias bedachung-becherer.de www.bedachung-becherer.de dachdecker-becherer.de www.dachdecker-becherer.de
CustomLog /home/web/log/access_log_bedachung-becherer.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.bedachung-becherer.de/awstats/awstats.pl?config=bedachung-becherer.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:http]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/bedachung-becherer.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/bedachung-becherer.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/bedachung-becherer.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/becherer
ServerName www.bedachung-becherer.de
ServerAlias bedachung-becherer.de www.bedachung-becherer.de dachdecker-becherer.de www.dachdecker-becherer.de
CustomLog /home/web/log/access_log_bedachung-becherer.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.bedachung-becherer.de/awstats/awstats.pl?config=bedachung-becherer.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:http]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
#POP:0
#FOR:2
#AUT:0
#QUOT:1000
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/bodesprung
ServerName www.bodesprung.de
ServerAlias bodesprung.de www.bodesprung.de
CustomLog /home/web/log/access_log_bodesprung.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.bodesprung.de/awstats/awstats.pl?config=bodesprung.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:http]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
#POP:1
#FOR:1
#AUT:0
#QUOT:500
#CUSTOM_TAG:
#ADMIN_USERS:
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/bodesprung.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/bodesprung.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/bodesprung.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/bodesprung
ServerName www.bodesprung.de
ServerAlias bodesprung.de www.bodesprung.de
CustomLog /home/web/log/access_log_bodesprung.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.bodesprung.de/awstats/awstats.pl?config=bodesprung.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:http]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
#POP:1
#FOR:1
#AUT:0
#QUOT:500
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin b.sternal@sternal-media.de
DocumentRoot /usr/local/www/apache24/noexec/sternalmedia
ServerName www.sternal-media.de
ServerAlias sternal-media.de www.sternal-media.de
CustomLog /home/web/log/access_log_sternal-media.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.sternal-media.de/awstats/awstats.pl?config=sternal-media.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:http]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/sternal-media.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/sternal-media.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/sternal-media.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin b.sternal@sternal-media.de
DocumentRoot /usr/local/www/apache24/noexec/sternalmedia
ServerName www.sternal-media.de
ServerAlias sternal-media.de www.sternal-media.de
CustomLog /home/web/log/access_log_sternal-media.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.sternal-media.de/awstats/awstats.pl?config=sternal-media.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:http]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
#POP:8
#FOR:8
#AUT:0
#QUOT:14000
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin b.sternal@sternal-media.de
DocumentRoot /usr/local/www/apache24/noexec/buchsternal
ServerName www.buch.sternal-media.de
ServerAlias buch.sternal-media.de www.buch.sternal-media.de
CustomLog /home/web/log/access_log_buch.sternal-media.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.buch.sternal-media.de/awstats/awstats.pl?config=buch.sternal-media.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:http]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/buch.sternal-media.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/buch.sternal-media.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/buch.sternal-media.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin b.sternal@sternal-media.de
DocumentRoot /usr/local/www/apache24/noexec/buchsternal
ServerName www.buch.sternal-media.de
ServerAlias buch.sternal-media.de www.buch.sternal-media.de
CustomLog /home/web/log/access_log_buch.sternal-media.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.buch.sternal-media.de/awstats/awstats.pl?config=buch.sternal-media.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:http]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:200
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin b.sternal@sternal-media.de
DocumentRoot /usr/local/www/apache24/noexec/sternaldomains
ServerName www.domains.sternal-media.de
ServerAlias domains.sternal-media.de www.domains.sternal-media.de
CustomLog /home/web/log/access_log_domains.sternal-media.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.domains.sternal-media.de/awstats/awstats.pl?config=domains.sternal-media.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:http]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/domains.sternal-media.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/domains.sternal-media.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/domains.sternal-media.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin b.sternal@sternal-media.de
DocumentRoot /usr/local/www/apache24/noexec/sternaldomains
ServerName www.domains.sternal-media.de
ServerAlias domains.sternal-media.de www.domains.sternal-media.de
CustomLog /home/web/log/access_log_domains.sternal-media.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.domains.sternal-media.de/awstats/awstats.pl?config=domains.sternal-media.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:http]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:50
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/fewosuedharz
ServerName www.ferienwohnungen-suedharz.de
ServerAlias ferienwohnungen-suedharz.de www.ferienwohnungen-suedharz.de
CustomLog /home/web/log/access_log_ferienwohnungen-suedharz.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.ferienwohnungen-suedharz.de/awstats/awstats.pl?config=ferienwohnungen-suedharz.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:http]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/ferienwohnungen-suedharz.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/ferienwohnungen-suedharz.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/ferienwohnungen-suedharz.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/fewosuedharz
ServerName www.ferienwohnungen-suedharz.de
ServerAlias ferienwohnungen-suedharz.de www.ferienwohnungen-suedharz.de
CustomLog /home/web/log/access_log_ferienwohnungen-suedharz.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.ferienwohnungen-suedharz.de/awstats/awstats.pl?config=ferienwohnungen-suedharz.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:http]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
#POP:0
#FOR:1
#AUT:0
#QUOT:50
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzschlehenhof
ServerName www.harz-schlehenhof.de
ServerAlias harz-schlehenhof.de www.harz-schlehenhof.de
CustomLog /home/web/log/access_log_harz-schlehenhof.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.harz-schlehenhof.de/awstats/awstats.pl?config=harz-schlehenhof.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:http]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/harz-schlehenhof.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/harz-schlehenhof.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/harz-schlehenhof.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzschlehenhof
ServerName www.harz-schlehenhof.de
ServerAlias harz-schlehenhof.de www.harz-schlehenhof.de
CustomLog /home/web/log/access_log_harz-schlehenhof.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.harz-schlehenhof.de/awstats/awstats.pl?config=harz-schlehenhof.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:http]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
#POP:1
#FOR:1
#AUT:0
#QUOT:50
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/hotelbeutel
ServerName www.hotel-beutel.de
ServerAlias hotel-beutel.de www.hotel-beutel.de
CustomLog /home/web/log/access_log_hotel-beutel.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.hotel-beutel.de/awstats/awstats.pl?config=hotel-beutel.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:http]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/hotel-beutel.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/hotel-beutel.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/hotel-beutel.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/hotelbeutel
ServerName www.hotel-beutel.de
ServerAlias hotel-beutel.de www.hotel-beutel.de
CustomLog /home/web/log/access_log_hotel-beutel.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.hotel-beutel.de/awstats/awstats.pl?config=hotel-beutel.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:http]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
#POP:0
#FOR:1
#AUT:0
#QUOT:1000
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin bi@rettet-das-selketal.de
DocumentRoot /usr/local/www/apache24/noexec/selketal
ServerName www.rettet-das-selketal.de
ServerAlias rettet-das-selketal.de www.rettet-das-selketal.de
CustomLog /home/web/log/access_log_rettet-das-selketal.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.rettet-das-selketal.de/awstats/awstats.pl?config=rettet-das-selketal.de
<IfModule fcgid_module>
<Location ></Location>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</Location>
</IfModule>
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/rettet-das-selketal.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/rettet-das-selketal.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/rettet-das-selketal.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN}"
RewriteRule ^\/?(.*)$ https://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin bi@rettet-das-selketal.de
DocumentRoot /usr/local/www/apache24/noexec/selketal
ServerName www.rettet-das-selketal.de
ServerAlias rettet-das-selketal.de www.rettet-das-selketal.de
CustomLog /home/web/log/access_log_rettet-das-selketal.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.rettet-das-selketal.de/awstats/awstats.pl?config=rettet-das-selketal.de
<IfModule fcgid_module>
<Location />
FcgidWrapper /usr/iports/php74/bin/php-cgi
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:https]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
#POP:0
#FOR:1
#AUT:0
#QUOT:100
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/schobessart
ServerName www.schobess-art.de
ServerAlias schobess-art.de www.schobess-art.de
CustomLog /home/web/log/access_log_schobess-art.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.schobess-art.de/awstats/awstats.pl?config=schobess-art.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/schobess-art.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/schobess-art.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/schobess-art.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/schobessart
ServerName www.schobess-art.de
ServerAlias schobess-art.de www.schobess-art.de
CustomLog /home/web/log/access_log_schobess-art.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.schobess-art.de/awstats/awstats.pl?config=schobess-art.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:1
#FOR:1
#AUT:0
#QUOT:1000
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@hotelcamping-ludwig.de
DocumentRoot /usr/local/www/apache24/noexec/hotelcamping-ludwig
ServerName www.hotelcamping-ludwig.de
ServerAlias hotelcamping-ludwig.de www.hotelcamping-ludwig.de
CustomLog /home/web/log/access_log_hotelcamping-ludwig.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.hotelcamping-ludwig.de/awstats/awstats.pl?config=hotelcamping-ludwig.de
<IfModule fcgid_module>
<Location />
FcgidWrapper /usr/iports/php74/bin/php-cgi
</Location>
</IfModule>
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/hotelcamping-ludwig.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/hotelcamping-ludwig.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/hotelcamping-ludwig.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@hotelcamping-ludwig.de
DocumentRoot /usr/local/www/apache24/noexec/hotelcamping-ludwig
ServerName www.hotelcamping-ludwig.de
ServerAlias hotelcamping-ludwig.de www.hotelcamping-ludwig.de
CustomLog /home/web/log/access_log_hotelcamping-ludwig.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.hotelcamping-ludwig.de/awstats/awstats.pl?config=hotelcamping-ludwig.de
<IfModule fcgid_module>
<Location />
FcgidWrapper /usr/iports/php74/bin/php-cgi
</Location>
</IfModule>
#POP:0
#FOR:1
#AUT:0
#QUOT:10
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@mts-richter.de
DocumentRoot /usr/local/www/apache24/noexec/mts-richter
ServerName www.mts-richter.de
ServerAlias mts-richter.de www.mts-richter.de
CustomLog /home/web/log/access_log_mts-richter.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.mts-richter.de/awstats/awstats.pl?config=mts-richter.de
<IfModule fcgid_module>
<Location />
FcgidWrapper /usr/iports/php74/bin/php-cgi
</Location>
</IfModule>
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/mts-richter.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/mts-richter.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/mts-richter.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@mts-richter.de
DocumentRoot /usr/local/www/apache24/noexec/mts-richter
ServerName www.mts-richter.de
ServerAlias mts-richter.de www.mts-richter.de
CustomLog /home/web/log/access_log_mts-richter.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.mts-richter.de/awstats/awstats.pl?config=mts-richter.de
<IfModule fcgid_module>
<Location />
FcgidWrapper /usr/iports/php74/bin/php-cgi
</Location>
</IfModule>
#POP:1
#FOR:1
#AUT:0
#QUOT:20
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@vier-jahreszeiten-harz.de
DocumentRoot /usr/local/www/apache24/noexec/vierjahreszeiten
ServerName www.vier-jahreszeiten-harz.de
ServerAlias vier-jahreszeiten-harz.de www.vier-jahreszeiten-harz.de
CustomLog /home/web/log/access_log_vier-jahreszeiten-harz.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.vier-jahreszeiten-harz.de/awstats/awstats.pl?config=vier-jahreszeiten-harz.de
<IfModule fcgid_module>
<Location />
FcgidWrapper /usr/iports/php74/bin/php-cgi
</Location>
</IfModule>
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/vier-jahreszeiten-harz.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/vier-jahreszeiten-harz.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/vier-jahreszeiten-harz.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@vier-jahreszeiten-harz.de
DocumentRoot /usr/local/www/apache24/noexec/vierjahreszeiten
ServerName www.vier-jahreszeiten-harz.de
ServerAlias vier-jahreszeiten-harz.de www.vier-jahreszeiten-harz.de
CustomLog /home/web/log/access_log_vier-jahreszeiten-harz.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.vier-jahreszeiten-harz.de/awstats/awstats.pl?config=vier-jahreszeiten-harz.de
<IfModule fcgid_module>
<Location />
FcgidWrapper /usr/iports/php74/bin/php-cgi
</Location>
</IfModule>
#POP:1
#FOR:1
#AUT:0
#QUOT:1000
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/bueckemuehle
ServerName www.bueckemuehle.de
ServerAlias bueckemuehle.de www.bueckemuehle.de
CustomLog /home/web/log/access_log_bueckemuehle.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.bueckemuehle.de/awstats/awstats.pl?config=bueckemuehle.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:1
#AUT:0
#QUOT:100
#CUSTOM_TAG:
#ADMIN_USERS:
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/bueckemuehle.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/bueckemuehle.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/bueckemuehle.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/bueckemuehle
ServerName www.bueckemuehle.de
ServerAlias bueckemuehle.de www.bueckemuehle.de
CustomLog /home/web/log/access_log_bueckemuehle.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.bueckemuehle.de/awstats/awstats.pl?config=bueckemuehle.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:1
#AUT:0
#QUOT:100
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/alpenwordpress
ServerName www.alpen-urlaub.com
ServerAlias alpen-urlaub.com www.alpen-urlaub.com
CustomLog /home/web/log/access_log_alpen-urlaub.com combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.alpen-urlaub.com/awstats/awstats.pl?config=alpen-urlaub.com
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/alpen-urlaub.com/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/alpen-urlaub.com/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/alpen-urlaub.com/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN}"
RewriteRule ^\/?(.*)$ https://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/alpenwordpress
ServerName www.alpen-urlaub.com
ServerAlias alpen-urlaub.com www.alpen-urlaub.com
CustomLog /home/web/log/access_log_alpen-urlaub.com combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.alpen-urlaub.com/awstats/awstats.pl?config=alpen-urlaub.com
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:https]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:500
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin b.sternal@sternal-media.de
DocumentRoot /usr/local/www/apache24/noexec/open-the-door
ServerName www.open-the-door.com
ServerAlias open-the-door.com www.open-the-door.com
CustomLog /home/web/log/access_log_open-the-door.com combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.open-the-door.com/awstats/awstats.pl?config=open-the-door.com
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/open-the-door.com/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/open-the-door.com/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/open-the-door.com/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN}"
RewriteRule ^\/?(.*)$ https://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin b.sternal@sternal-media.de
DocumentRoot /usr/local/www/apache24/noexec/open-the-door
ServerName www.open-the-door.com
ServerAlias open-the-door.com www.open-the-door.com
CustomLog /home/web/log/access_log_open-the-door.com combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.open-the-door.com/awstats/awstats.pl?config=open-the-door.com
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:https]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:500
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/borre-meyer-gbr
ServerName www.borre-meyer-gbr.de
ServerAlias borre-meyer-gbr.de www.borre-meyer-gbr.de
CustomLog /home/web/log/access_log_borre-meyer-gbr.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.borre-meyer-gbr.de/awstats/awstats.pl?config=borre-meyer-gbr.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/borre-meyer-gbr.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/borre-meyer-gbr.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/borre-meyer-gbr.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN}"
RewriteRule ^\/?(.*)$ https://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/borre-meyer-gbr
ServerName www.borre-meyer-gbr.de
ServerAlias borre-meyer-gbr.de www.borre-meyer-gbr.de
CustomLog /home/web/log/access_log_borre-meyer-gbr.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.borre-meyer-gbr.de/awstats/awstats.pl?config=borre-meyer-gbr.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:https]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
#POP:0
#FOR:1
#AUT:0
#QUOT:1000
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/deutschurlaub
ServerName www.deutschland-urlaub.eu
ServerAlias deutschland-urlaub.eu www.deutschland-urlaub.eu
CustomLog /home/web/log/access_log_deutschland-urlaub.eu combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.deutschland-urlaub.eu/awstats/awstats.pl?config=deutschland-urlaub.eu
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/deutschland-urlaub.eu/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/deutschland-urlaub.eu/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/deutschland-urlaub.eu/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN}"
RewriteRule ^\/?(.*)$ https://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/deutschurlaub
ServerName www.deutschland-urlaub.eu
ServerAlias deutschland-urlaub.eu www.deutschland-urlaub.eu
CustomLog /home/web/log/access_log_deutschland-urlaub.eu combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.deutschland-urlaub.eu/awstats/awstats.pl?config=deutschland-urlaub.eu
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:https]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:200
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/ostseepreiswert
ServerName www.ostsee-urlaub-preiswert.de
ServerAlias ostsee-urlaub-preiswert.de www.ostsee-urlaub-preiswert.de
CustomLog /home/web/log/access_log_ostsee-urlaub-preiswert.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.ostsee-urlaub-preiswert.de/awstats/awstats.pl?config=ostsee-urlaub-preiswert.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/ostsee-urlaub-preiswert.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/ostsee-urlaub-preiswert.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/ostsee-urlaub-preiswert.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/ostseepreiswert
ServerName www.ostsee-urlaub-preiswert.de
ServerAlias ostsee-urlaub-preiswert.de www.ostsee-urlaub-preiswert.de
CustomLog /home/web/log/access_log_ostsee-urlaub-preiswert.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.ostsee-urlaub-preiswert.de/awstats/awstats.pl?config=ostsee-urlaub-preiswert.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:250
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/thueringen
ServerName www.thueringen-urlaub.de
ServerAlias thueringen-urlaub.de www.thueringen-urlaub.de
CustomLog /home/web/log/access_log_thueringen-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.thueringen-urlaub.de/awstats/awstats.pl?config=thueringen-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/thueringen-urlaub.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/thueringen-urlaub.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/thueringen-urlaub.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/thueringen
ServerName www.thueringen-urlaub.de
ServerAlias thueringen-urlaub.de www.thueringen-urlaub.de
CustomLog /home/web/log/access_log_thueringen-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.thueringen-urlaub.de/awstats/awstats.pl?config=thueringen-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:50
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/magdeburg
ServerName www.magdeburg-urlaub.de
ServerAlias magdeburg-urlaub.de www.magdeburg-urlaub.de
CustomLog /home/web/log/access_log_magdeburg-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.magdeburg-urlaub.de/awstats/awstats.pl?config=magdeburg-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/magdeburg-urlaub.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/magdeburg-urlaub.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/magdeburg-urlaub.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/magdeburg
ServerName www.magdeburg-urlaub.de
ServerAlias magdeburg-urlaub.de www.magdeburg-urlaub.de
CustomLog /home/web/log/access_log_magdeburg-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.magdeburg-urlaub.de/awstats/awstats.pl?config=magdeburg-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:50
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzwoche
ServerName www.harzwoche.de
ServerAlias harzwoche.de www.harzwoche.de
CustomLog /home/web/log/access_log_harzwoche.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.harzwoche.de/awstats/awstats.pl?config=harzwoche.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/harzwoche.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/harzwoche.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/harzwoche.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN}"
RewriteRule ^\/?(.*)$ https://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzwoche
ServerName www.harzwoche.de
ServerAlias harzwoche.de www.harzwoche.de
CustomLog /home/web/log/access_log_harzwoche.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.harzwoche.de/awstats/awstats.pl?config=harzwoche.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:https]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:1000
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/teichgraf
ServerName www.teichgraf.de
ServerAlias teichgraf.de www.teichgraf.de
CustomLog /home/web/log/access_log_teichgraf.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.teichgraf.de/awstats/awstats.pl?config=teichgraf.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/teichgraf.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/teichgraf.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/teichgraf.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/teichgraf
ServerName www.teichgraf.de
ServerAlias teichgraf.de www.teichgraf.de
CustomLog /home/web/log/access_log_teichgraf.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.teichgraf.de/awstats/awstats.pl?config=teichgraf.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:1
#AUT:0
#QUOT:10
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin s.sternal@sternal-media.de
DocumentRoot /usr/local/www/apache24/noexec/ostseeangeln
ServerName www.angeln.ost-see-urlaub.de
ServerAlias angeln.ost-see-urlaub.de www.angeln.ost-see-urlaub.de
CustomLog /home/web/log/access_log_angeln.ost-see-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.angeln.ost-see-urlaub.de/awstats/awstats.pl?config=angeln.ost-see-urlaub.de
<IfModule fcgid_module>
<Location />
FcgidWrapper /usr/iports/php74/bin/php-cgi
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:25
#CUSTOM_TAG:
#ADMIN_USERS:
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/angeln.ost-see-urlaub.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/angeln.ost-see-urlaub.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/angeln.ost-see-urlaub.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin s.sternal@sternal-media.de
DocumentRoot /usr/local/www/apache24/noexec/ostseeangeln
ServerName www.angeln.ost-see-urlaub.de
ServerAlias angeln.ost-see-urlaub.de www.angeln.ost-see-urlaub.de
CustomLog /home/web/log/access_log_angeln.ost-see-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.angeln.ost-see-urlaub.de/awstats/awstats.pl?config=angeln.ost-see-urlaub.de
<IfModule fcgid_module>
<Location />
FcgidWrapper /usr/iports/php74/bin/php-cgi
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:25
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/ostseebuecher
ServerName www.buecher.ost-see-urlaub.de
ServerAlias buecher.ost-see-urlaub.de www.buecher.ost-see-urlaub.de
CustomLog /home/web/log/access_log_buecher.ost-see-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.buecher.ost-see-urlaub.de/awstats/awstats.pl?config=buecher.ost-see-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/buecher.ost-see-urlaub.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/buecher.ost-see-urlaub.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/buecher.ost-see-urlaub.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/ostseebuecher
ServerName www.buecher.ost-see-urlaub.de
ServerAlias buecher.ost-see-urlaub.de www.buecher.ost-see-urlaub.de
CustomLog /home/web/log/access_log_buecher.ost-see-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.buecher.ost-see-urlaub.de/awstats/awstats.pl?config=buecher.ost-see-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:50
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/ostseecamping
ServerName www.camping.ost-see-urlaub.de
ServerAlias camping.ost-see-urlaub.de www.camping.ost-see-urlaub.de
CustomLog /home/web/log/access_log_camping.ost-see-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.camping.ost-see-urlaub.de/awstats/awstats.pl?config=camping.ost-see-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/camping.ost-see-urlaub.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/camping.ost-see-urlaub.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/camping.ost-see-urlaub.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/ostseecamping
ServerName www.camping.ost-see-urlaub.de
ServerAlias camping.ost-see-urlaub.de www.camping.ost-see-urlaub.de
CustomLog /home/web/log/access_log_camping.ost-see-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.camping.ost-see-urlaub.de/awstats/awstats.pl?config=camping.ost-see-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:25
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/fehmarn
ServerName www.fehmarn.ost-see-urlaub.de
ServerAlias fehmarn.ost-see-urlaub.de www.fehmarn.ost-see-urlaub.de
CustomLog /home/web/log/access_log_fehmarn.ost-see-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.fehmarn.ost-see-urlaub.de/awstats/awstats.pl?config=fehmarn.ost-see-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/fehmarn.ost-see-urlaub.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/fehmarn.ost-see-urlaub.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/fehmarn.ost-see-urlaub.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/fehmarn
ServerName www.fehmarn.ost-see-urlaub.de
ServerAlias fehmarn.ost-see-urlaub.de www.fehmarn.ost-see-urlaub.de
CustomLog /home/web/log/access_log_fehmarn.ost-see-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.fehmarn.ost-see-urlaub.de/awstats/awstats.pl?config=fehmarn.ost-see-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:50
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/fischland
ServerName www.fischland-darss-zingst.ost-see-urlaub.de
ServerAlias fischland-darss-zingst.ost-see-urlaub.de www.fischland-darss-zingst.ost-see-urlaub.de
CustomLog /home/web/log/access_log_fischland.ost-see-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/fischland-darss-zingst.ost-see-urlaub.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/fischland-darss-zingst.ost-see-urlaub.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/fischland-darss-zingst.ost-see-urlaub.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/fischland
ServerName www.fischland-darss-zingst.ost-see-urlaub.de
ServerAlias fischland-darss-zingst.ost-see-urlaub.de www.fischland-darss-zingst.ost-see-urlaub.de
CustomLog /home/web/log/access_log_fischland.ost-see-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:25
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/flensburg
ServerName www.flensburg.ost-see-urlaub.de
ServerAlias flensburg.ost-see-urlaub.de www.flensburg.ost-see-urlaub.de
CustomLog /home/web/log/access_log_flensburg.ost-see-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.flensburg.ost-see-urlaub.de/awstats/awstats.pl?config=flensburg.ost-see-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/flensburg.ost-see-urlaub.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/flensburg.ost-see-urlaub.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/flensburg.ost-see-urlaub.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/flensburg
ServerName www.flensburg.ost-see-urlaub.de
ServerAlias flensburg.ost-see-urlaub.de www.flensburg.ost-see-urlaub.de
CustomLog /home/web/log/access_log_flensburg.ost-see-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.flensburg.ost-see-urlaub.de/awstats/awstats.pl?config=flensburg.ost-see-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:25
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/ostseeforum
ServerName www.forum.ost-see-urlaub.de
ServerAlias forum.ost-see-urlaub.de www.forum.ost-see-urlaub.de
CustomLog /home/web/log/access_log_forum.ost-see-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.forum.ost-see-urlaub.de/awstats/awstats.pl?config=forum.ost-see-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:ostsee-urlaub-portal.de]
RewriteRule . - [E=REDIRECT_SCHEME:http]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/forum.ost-see-urlaub.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/forum.ost-see-urlaub.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/forum.ost-see-urlaub.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/ostseeforum
ServerName www.forum.ost-see-urlaub.de
ServerAlias forum.ost-see-urlaub.de www.forum.ost-see-urlaub.de
CustomLog /home/web/log/access_log_forum.ost-see-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.forum.ost-see-urlaub.de/awstats/awstats.pl?config=forum.ost-see-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule . - [E=REDIRECT_DOMAIN:ostsee-urlaub-portal.de]
RewriteRule . - [E=REDIRECT_SCHEME:http]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:5
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/hiddensee
ServerName www.hiddensee.ost-see-urlaub.de
ServerAlias hiddensee.ost-see-urlaub.de www.hiddensee.ost-see-urlaub.de
CustomLog /home/web/log/access_log_hiddensee.ost-see-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.hiddensee.ost-see-urlaub.de/awstats/awstats.pl?config=hiddensee.ost-see-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/hiddensee.ost-see-urlaub.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/hiddensee.ost-see-urlaub.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/hiddensee.ost-see-urlaub.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/hiddensee
ServerName www.hiddensee.ost-see-urlaub.de
ServerAlias hiddensee.ost-see-urlaub.de www.hiddensee.ost-see-urlaub.de
CustomLog /home/web/log/access_log_hiddensee.ost-see-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.hiddensee.ost-see-urlaub.de/awstats/awstats.pl?config=hiddensee.ost-see-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:5
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/kiel
ServerName www.kiel.ost-see-urlaub.de
ServerAlias kiel.ost-see-urlaub.de www.kiel.ost-see-urlaub.de
CustomLog /home/web/log/access_log_kiel.ost-see-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.kiel.ost-see-urlaub.de/awstats/awstats.pl?config=kiel.ost-see-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/kiel.ost-see-urlaub.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/kiel.ost-see-urlaub.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/kiel.ost-see-urlaub.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/kiel
ServerName www.kiel.ost-see-urlaub.de
ServerAlias kiel.ost-see-urlaub.de www.kiel.ost-see-urlaub.de
CustomLog /home/web/log/access_log_kiel.ost-see-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.kiel.ost-see-urlaub.de/awstats/awstats.pl?config=kiel.ost-see-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:25
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/ostseelastminute
ServerName www.last-minute.ost-see-urlaub.de
ServerAlias last-minute.ost-see-urlaub.de www.last-minute.ost-see-urlaub.de
CustomLog /home/web/log/access_log_last-minute.ost-see-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.last-minute.ost-see-urlaub.de/awstats/awstats.pl?config=last-minute.ost-see-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/last-minute.ost-see-urlaub.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/last-minute.ost-see-urlaub.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/last-minute.ost-see-urlaub.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/ostseelastminute
ServerName www.last-minute.ost-see-urlaub.de
ServerAlias last-minute.ost-see-urlaub.de www.last-minute.ost-see-urlaub.de
CustomLog /home/web/log/access_log_last-minute.ost-see-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.last-minute.ost-see-urlaub.de/awstats/awstats.pl?config=last-minute.ost-see-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:25
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/luebeck
ServerName www.luebeck.ost-see-urlaub.de
ServerAlias luebeck.ost-see-urlaub.de www.luebeck.ost-see-urlaub.de
CustomLog /home/web/log/access_log_luebeck.ost-see-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.luebeck.ost-see-urlaub.de/awstats/awstats.pl?config=luebeck.ost-see-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/luebeck.ost-see-urlaub.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/luebeck.ost-see-urlaub.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/luebeck.ost-see-urlaub.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/luebeck
ServerName www.luebeck.ost-see-urlaub.de
ServerAlias luebeck.ost-see-urlaub.de www.luebeck.ost-see-urlaub.de
CustomLog /home/web/log/access_log_luebeck.ost-see-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.luebeck.ost-see-urlaub.de/awstats/awstats.pl?config=luebeck.ost-see-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:25
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/ostsee
ServerName www.ost-see-urlaub.de
ServerAlias ost-see-urlaub.de www.ost-see-urlaub.de
CustomLog /home/web/log/access_log_ost-see-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.ost-see-urlaub.de/awstats/awstats.pl?config=ost-see-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/ost-see-urlaub.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/ost-see-urlaub.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/ost-see-urlaub.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/ostsee
ServerName www.ost-see-urlaub.de
ServerAlias ost-see-urlaub.de www.ost-see-urlaub.de
CustomLog /home/web/log/access_log_ost-see-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.ost-see-urlaub.de/awstats/awstats.pl?config=ost-see-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:15
#AUT:0
#QUOT:100
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/rostock
ServerName www.rostock.ost-see-urlaub.de
ServerAlias rostock.ost-see-urlaub.de www.rostock.ost-see-urlaub.de
CustomLog /home/web/log/access_log_rostock.ost-see-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.rostock.ost-see-urlaub.de/awstats/awstats.pl?config=rostock.ost-see-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/rostock.ost-see-urlaub.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/rostock.ost-see-urlaub.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/rostock.ost-see-urlaub.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/rostock
ServerName www.rostock.ost-see-urlaub.de
ServerAlias rostock.ost-see-urlaub.de www.rostock.ost-see-urlaub.de
CustomLog /home/web/log/access_log_rostock.ost-see-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.rostock.ost-see-urlaub.de/awstats/awstats.pl?config=rostock.ost-see-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:25
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/ruegen
ServerName www.ruegen.ost-see-urlaub.de
ServerAlias ruegen.ost-see-urlaub.de www.ruegen.ost-see-urlaub.de
CustomLog /home/web/log/access_log_ruegen.ost-see-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.ruegen.ost-see-urlaub.de/awstats/awstats.pl?config=ruegen.ost-see-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/ruegen.ost-see-urlaub.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/ruegen.ost-see-urlaub.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/ruegen.ost-see-urlaub.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/ruegen
ServerName www.ruegen.ost-see-urlaub.de
ServerAlias ruegen.ost-see-urlaub.de www.ruegen.ost-see-urlaub.de
CustomLog /home/web/log/access_log_ruegen.ost-see-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.ruegen.ost-see-urlaub.de/awstats/awstats.pl?config=ruegen.ost-see-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:50
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/stettinerhaff
ServerName www.stettiner-haff.ost-see-urlaub.de
ServerAlias stettiner-haff.ost-see-urlaub.de www.stettiner-haff.ost-see-urlaub.de
CustomLog /home/web/log/access_log_stettiner-haff.ost-see-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.stettiner-haff.ost-see-urlaub.de/awstats/awstats.pl?config=stettiner-haff.ost-see-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/stettiner-haff.ost-see-urlaub.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/stettiner-haff.ost-see-urlaub.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/stettiner-haff.ost-see-urlaub.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/stettinerhaff
ServerName www.stettiner-haff.ost-see-urlaub.de
ServerAlias stettiner-haff.ost-see-urlaub.de www.stettiner-haff.ost-see-urlaub.de
CustomLog /home/web/log/access_log_stettiner-haff.ost-see-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.stettiner-haff.ost-see-urlaub.de/awstats/awstats.pl?config=stettiner-haff.ost-see-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:25
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/stralsund
ServerName www.stralsund.ost-see-urlaub.de
ServerAlias stralsund.ost-see-urlaub.de www.stralsund.ost-see-urlaub.de
CustomLog /home/web/log/access_log_stralsund.ost-see-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.stralsund.ost-see-urlaub.de/awstats/awstats.pl?config=stralsund.ost-see-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/stralsund.ost-see-urlaub.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/stralsund.ost-see-urlaub.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/stralsund.ost-see-urlaub.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/stralsund
ServerName www.stralsund.ost-see-urlaub.de
ServerAlias stralsund.ost-see-urlaub.de www.stralsund.ost-see-urlaub.de
CustomLog /home/web/log/access_log_stralsund.ost-see-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.stralsund.ost-see-urlaub.de/awstats/awstats.pl?config=stralsund.ost-see-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:25
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/usedom
ServerName www.usedom.ost-see-urlaub.de
ServerAlias usedom.ost-see-urlaub.de www.usedom.ost-see-urlaub.de
CustomLog /home/web/log/access_log_usedom.ost-see-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.usedom.ost-see-urlaub.de/awstats/awstats.pl?config=usedom.ost-see-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/usedom.ost-see-urlaub.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/usedom.ost-see-urlaub.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/usedom.ost-see-urlaub.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/usedom
ServerName www.usedom.ost-see-urlaub.de
ServerAlias usedom.ost-see-urlaub.de www.usedom.ost-see-urlaub.de
CustomLog /home/web/log/access_log_usedom.ost-see-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.usedom.ost-see-urlaub.de/awstats/awstats.pl?config=usedom.ost-see-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:50
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/ostseewellness
ServerName www.wellness.ost-see-urlaub.de
ServerAlias wellness.ost-see-urlaub.de www.wellness.ost-see-urlaub.de
CustomLog /home/web/log/access_log_wellness.ost-see-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.wellness.ost-see-urlaub.de/awstats/awstats.pl?config=wellness.ost-see-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/wellness.ost-see-urlaub.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/wellness.ost-see-urlaub.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/wellness.ost-see-urlaub.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/ostseewellness
ServerName www.wellness.ost-see-urlaub.de
ServerAlias wellness.ost-see-urlaub.de www.wellness.ost-see-urlaub.de
CustomLog /home/web/log/access_log_wellness.ost-see-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.wellness.ost-see-urlaub.de/awstats/awstats.pl?config=wellness.ost-see-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:25
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/wismar
ServerName www.wismar.ost-see-urlaub.de
ServerAlias wismar.ost-see-urlaub.de www.wismar.ost-see-urlaub.de
CustomLog /home/web/log/access_log_wismar.ost-see-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.wismar.ost-see-urlaub.de/awstats/awstats.pl?config=wismar.ost-see-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/wismar.ost-see-urlaub.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/wismar.ost-see-urlaub.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/wismar.ost-see-urlaub.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/wismar
ServerName www.wismar.ost-see-urlaub.de
ServerAlias wismar.ost-see-urlaub.de www.wismar.ost-see-urlaub.de
CustomLog /home/web/log/access_log_wismar.ost-see-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.wismar.ost-see-urlaub.de/awstats/awstats.pl?config=wismar.ost-see-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:25
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/ostwoistwaslos
ServerName www.woistwaslos.ost-see-urlaub.de
ServerAlias woistwaslos.ost-see-urlaub.de www.woistwaslos.ost-see-urlaub.de
CustomLog /home/web/log/access_log_woistwaslos.ost-see-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.woistwaslos.ost-see-urlaub.de/awstats/awstats.pl?config=woistwaslos.ost-see-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/woistwaslos.ost-see-urlaub.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/woistwaslos.ost-see-urlaub.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/woistwaslos.ost-see-urlaub.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/ostwoistwaslos
ServerName www.woistwaslos.ost-see-urlaub.de
ServerAlias woistwaslos.ost-see-urlaub.de www.woistwaslos.ost-see-urlaub.de
CustomLog /home/web/log/access_log_woistwaslos.ost-see-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.woistwaslos.ost-see-urlaub.de/awstats/awstats.pl?config=woistwaslos.ost-see-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php74/bin/php-cgi>
FcgidWrapper /usr/iports/php74/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:100000
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzalexisbad
ServerName www.alexisbad.harz-urlaub.de
ServerAlias alexisbad.harz-urlaub.de www.alexisbad.harz-urlaub.de
CustomLog /home/web/log/access_log_alexisbad.harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.alexisbad.harz-urlaub.de/awstats/awstats.pl?config=alexisbad.harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:1
#CUSTOM_TAG:
#ADMIN_USERS:
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/alexisbad.harz-urlaub.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/alexisbad.harz-urlaub.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/alexisbad.harz-urlaub.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzalexisbad
ServerName www.alexisbad.harz-urlaub.de
ServerAlias alexisbad.harz-urlaub.de www.alexisbad.harz-urlaub.de
CustomLog /home/web/log/access_log_alexisbad.harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.alexisbad.harz-urlaub.de/awstats/awstats.pl?config=alexisbad.harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:1
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzallrode
ServerName www.allrode.harz-urlaub.de
ServerAlias allrode.harz-urlaub.de www.allrode.harz-urlaub.de
CustomLog /home/web/log/access_log_allrode.harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.allrode.harz-urlaub.de/awstats/awstats.pl?config=allrode.harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:1
#CUSTOM_TAG:
#ADMIN_USERS:
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/allrode.harz-urlaub.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/allrode.harz-urlaub.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/allrode.harz-urlaub.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzallrode
ServerName www.allrode.harz-urlaub.de
ServerAlias allrode.harz-urlaub.de www.allrode.harz-urlaub.de
CustomLog /home/web/log/access_log_allrode.harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.allrode.harz-urlaub.de/awstats/awstats.pl?config=allrode.harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:1
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzanderquelle
ServerName www.an-der-quelle.harz-urlaub.de
ServerAlias an-der-quelle.harz-urlaub.de www.an-der-quelle.harz-urlaub.de
CustomLog /home/web/log/access_log_an-der-quelle.harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.an-der-quelle.harz-urlaub.de/awstats/awstats.pl?config=an-der-quelle.harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:100
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzangeln
ServerName www.angeln.harz-urlaub.de
ServerAlias angeln.harz-urlaub.de www.angeln.harz-urlaub.de
CustomLog /home/web/log/access_log_angeln.harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.angeln.harz-urlaub.de/awstats/awstats.pl?config=angeln.harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/angeln.harz-urlaub.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/angeln.harz-urlaub.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/angeln.harz-urlaub.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN}"
RewriteRule ^\/?(.*)$ https://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzangeln
ServerName www.angeln.harz-urlaub.de
ServerAlias angeln.harz-urlaub.de www.angeln.harz-urlaub.de
CustomLog /home/web/log/access_log_angeln.harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.angeln.harz-urlaub.de/awstats/awstats.pl?config=angeln.harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
RewriteRule . - [E=REDIRECT_DOMAIN:%{HTTP_HOST}]
RewriteRule . - [E=REDIRECT_SCHEME:http]
RewriteCond expr "%{HTTP_HOST} != %{ENV:REDIRECT_DOMAIN} || 'http' != %{ENV:REDIRECT_SCHEME}"
RewriteRule ^\/?(.*)$ %{ENV:REDIRECT_SCHEME}://%{ENV:REDIRECT_DOMAIN}/$1 [R=301,L]
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:10
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzblankenburg
ServerName www.blankenburg.harz-urlaub.de
ServerAlias blankenburg.harz-urlaub.de www.blankenburg.harz-urlaub.de
CustomLog /home/web/log/access_log_blankenburg.harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.blankenburg.harz-urlaub.de/awstats/awstats.pl?config=blankenburg.harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:100000
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzbrocken
ServerName www.brocken.harz-urlaub.de
ServerAlias brocken.harz-urlaub.de www.brocken.harz-urlaub.de
CustomLog /home/web/log/access_log_brocken.harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.brocken.harz-urlaub.de/awstats/awstats.pl?config=brocken.harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:100000
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/bueckemuehle02
ServerName www.bueckemuehle.harz-urlaub.de
ServerAlias bueckemuehle.harz-urlaub.de www.bueckemuehle.harz-urlaub.de
CustomLog /home/web/log/access_log_bueckemuehle.harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.bueckemuehle.harz-urlaub.de/awstats/awstats.pl?config=bueckemuehle.harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:100000
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzbuecher
ServerName www.buecher.harz-urlaub.de
ServerAlias buecher.harz-urlaub.de www.buecher.harz-urlaub.de
CustomLog /home/web/log/access_log_buecher.harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.buecher.harz-urlaub.de/awstats/awstats.pl?config=buecher.harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:100000
#CUSTOM_TAG:
#ADMIN_USERS:
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/buecher.harz-urlaub.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/buecher.harz-urlaub.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/buecher.harz-urlaub.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzbuecher
ServerName www.buecher.harz-urlaub.de
ServerAlias buecher.harz-urlaub.de www.buecher.harz-urlaub.de
CustomLog /home/web/log/access_log_buecher.harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.buecher.harz-urlaub.de/awstats/awstats.pl?config=buecher.harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:100000
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzcamping
ServerName www.camping.harz-urlaub.de
ServerAlias camping.harz-urlaub.de www.camping.harz-urlaub.de
CustomLog /home/web/log/access_log_camping.harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.camping.harz-urlaub.de/awstats/awstats.pl?config=camping.harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:100000
#CUSTOM_TAG:
#ADMIN_USERS:
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/camping.harz-urlaub.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/camping.harz-urlaub.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/camping.harz-urlaub.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzcamping
ServerName www.camping.harz-urlaub.de
ServerAlias camping.harz-urlaub.de www.camping.harz-urlaub.de
CustomLog /home/web/log/access_log_camping.harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.camping.harz-urlaub.de/awstats/awstats.pl?config=camping.harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:100000
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/emailskunden
ServerName www.emails.harz-urlaub.de
ServerAlias emails.harz-urlaub.de www.emails.harz-urlaub.de
CustomLog /home/web/log/access_log_emails.harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.emails.harz-urlaub.de/awstats/awstats.pl?config=emails.harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:100000
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzferienhaus
ServerName www.ferienhaus.harz-urlaub.de
ServerAlias ferienhaus.harz-urlaub.de www.ferienhaus.harz-urlaub.de
CustomLog /home/web/log/access_log_ferienhaus.harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.ferienhaus.harz-urlaub.de/awstats/awstats.pl?config=ferienhaus.harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:100000
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzfewo
ServerName www.ferienwohnung.harz-urlaub.de
ServerAlias ferienwohnung.harz-urlaub.de www.ferienwohnung.harz-urlaub.de
CustomLog /home/web/log/access_log_ferienwohnung.harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.ferienwohnung.harz-urlaub.de/awstats/awstats.pl?config=ferienwohnung.harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:100000
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzflorafauna
ServerName www.flora-fauna.harz-urlaub.de
ServerAlias flora-fauna.harz-urlaub.de www.flora-fauna.harz-urlaub.de
CustomLog /home/web/log/access_log_flora-fauna.harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.flora-fauna.harz-urlaub.de/awstats/awstats.pl?config=flora-fauna.harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:100000
#CUSTOM_TAG:
#ADMIN_USERS:
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/flora-fauna.harz-urlaub.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/flora-fauna.harz-urlaub.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/flora-fauna.harz-urlaub.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzflorafauna
ServerName www.flora-fauna.harz-urlaub.de
ServerAlias flora-fauna.harz-urlaub.de www.flora-fauna.harz-urlaub.de
CustomLog /home/web/log/access_log_flora-fauna.harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.flora-fauna.harz-urlaub.de/awstats/awstats.pl?config=flora-fauna.harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:100000
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzsagen
ServerName www.harzer-sagen.harz-urlaub.de
ServerAlias harzer-sagen.harz-urlaub.de www.harzer-sagen.harz-urlaub.de
CustomLog /home/web/log/access_log_harzer-sagen.harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.harzer-sagen.harz-urlaub.de/awstats/awstats.pl?config=harzer-sagen.harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:100000
#CUSTOM_TAG:
#ADMIN_USERS:
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/harzer-sagen.harz-urlaub.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/harzer-sagen.harz-urlaub.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/harzer-sagen.harz-urlaub.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzsagen
ServerName www.harzer-sagen.harz-urlaub.de
ServerAlias harzer-sagen.harz-urlaub.de www.harzer-sagen.harz-urlaub.de
CustomLog /home/web/log/access_log_harzer-sagen.harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.harzer-sagen.harz-urlaub.de/awstats/awstats.pl?config=harzer-sagen.harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:100000
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzforum
ServerName www.harzforum.harz-urlaub.de
ServerAlias harzforum.harz-urlaub.de www.harzforum.harz-urlaub.de
CustomLog /home/web/log/access_log_harzforum.harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.harzforum.harz-urlaub.de/awstats/awstats.pl?config=harzforum.harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:100000
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzholiday
ServerName www.harz-holiday.eu
ServerAlias harz-holiday.eu www.harz-holiday.eu
CustomLog /home/web/log/access_log_harz-holiday.eu combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.harz-holiday.eu/awstats/awstats.pl?config=harz-holiday.eu
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:100000
#CUSTOM_TAG:
#ADMIN_USERS:
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/harz-holiday.eu/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/harz-holiday.eu/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/harz-holiday.eu/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzholiday
ServerName www.harz-holiday.eu
ServerAlias harz-holiday.eu www.harz-holiday.eu
CustomLog /home/web/log/access_log_harz-holiday.eu combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.harz-holiday.eu/awstats/awstats.pl?config=harz-holiday.eu
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:100000
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzvideo
ServerName www.harzvideo.harz-urlaub.de
ServerAlias harzvideo.harz-urlaub.de www.harzvideo.harz-urlaub.de
CustomLog /home/web/log/access_log_harzvideo.harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.harzvideo.harz-urlaub.de/awstats/awstats.pl?config=harzvideo.harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:100000
#CUSTOM_TAG:
#ADMIN_USERS:
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/harzvideo.harz-urlaub.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/harzvideo.harz-urlaub.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/harzvideo.harz-urlaub.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzvideo
ServerName www.harzvideo.harz-urlaub.de
ServerAlias harzvideo.harz-urlaub.de www.harzvideo.harz-urlaub.de
CustomLog /home/web/log/access_log_harzvideo.harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.harzvideo.harz-urlaub.de/awstats/awstats.pl?config=harzvideo.harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:100000
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzurlaub
ServerName www.harz-urlaub.de
ServerAlias harz-urlaub.de www.harz-urlaub.de
CustomLog /home/web/log/access_log_harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.harz-urlaub.de/awstats/awstats.pl?config=harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:8
#FOR:8
#AUT:3
#QUOT:100000
#CUSTOM_TAG:
#ADMIN_USERS:
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/harz-urlaub.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/harz-urlaub.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/harz-urlaub.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzurlaub
ServerName www.harz-urlaub.de
ServerAlias harz-urlaub.de www.harz-urlaub.de
CustomLog /home/web/log/access_log_harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.harz-urlaub.de/awstats/awstats.pl?config=harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:8
#FOR:8
#AUT:3
#QUOT:100000
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzherbergen
ServerName www.herbergen.harz-urlaub.de
ServerAlias herbergen.harz-urlaub.de www.herbergen.harz-urlaub.de
CustomLog /home/web/log/access_log_herbergen.harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.herbergen.harz-urlaub.de/awstats/awstats.pl?config=herbergen.harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:100000
#CUSTOM_TAG:
#ADMIN_USERS:
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/herbergen.harz-urlaub.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/herbergen.harz-urlaub.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/herbergen.harz-urlaub.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzherbergen
ServerName www.herbergen.harz-urlaub.de
ServerAlias herbergen.harz-urlaub.de www.herbergen.harz-urlaub.de
CustomLog /home/web/log/access_log_herbergen.harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.herbergen.harz-urlaub.de/awstats/awstats.pl?config=herbergen.harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:100000
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzhigh
ServerName www.highlights.harz-urlaub.de
ServerAlias highlights.harz-urlaub.de www.highlights.harz-urlaub.de
CustomLog /home/web/log/access_log_highlights.harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.highlights.harz-urlaub.de/awstats/awstats.pl?config=highlights.harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:100000
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzhochharz
ServerName www.hochharz.harz-urlaub.de
ServerAlias hochharz.harz-urlaub.de www.hochharz.harz-urlaub.de
CustomLog /home/web/log/access_log_hochharz.harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.hochharz.harz-urlaub.de/awstats/awstats.pl?config=hochharz.harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:100000
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzhotel
ServerName www.hotel.harz-urlaub.de
ServerAlias hotel.harz-urlaub.de www.hotel.harz-urlaub.de
CustomLog /home/web/log/access_log_hotel.harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.hotel.harz-urlaub.de/awstats/awstats.pl?config=hotel.harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:100000
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/hotelhohe
ServerName www.hotel-hohe.harz-urlaub.de
ServerAlias hotel-hohe.harz-urlaub.de www.hotel-hohe.harz-urlaub.de
CustomLog /home/web/log/access_log_hotel-hohe.harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.hotel-hohe.harz-urlaub.de/awstats/awstats.pl?config=hotel-hohe.harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:100000
#CUSTOM_TAG:
#ADMIN_USERS:
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/hotel-hohe.harz-urlaub.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/hotel-hohe.harz-urlaub.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/hotel-hohe.harz-urlaub.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/hotelhohe
ServerName www.hotel-hohe.harz-urlaub.de
ServerAlias hotel-hohe.harz-urlaub.de www.hotel-hohe.harz-urlaub.de
CustomLog /home/web/log/access_log_hotel-hohe.harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.hotel-hohe.harz-urlaub.de/awstats/awstats.pl?config=hotel-hohe.harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:100000
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzkarte
ServerName www.karte.harz-urlaub.de
ServerAlias karte.harz-urlaub.de www.karte.harz-urlaub.de
CustomLog /home/web/log/access_log_karte.harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.karte.harz-urlaub.de/awstats/awstats.pl?config=karte.harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:100000
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzkultur
ServerName www.kultur.harz-urlaub.de
ServerAlias kultur.harz-urlaub.de www.kultur.harz-urlaub.de
CustomLog /home/web/log/access_log_kultur.harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.kultur.harz-urlaub.de/awstats/awstats.pl?config=kultur.harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:100000
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzlandurlaub
ServerName www.landurlaub.harz-urlaub.de
ServerAlias landurlaub.harz-urlaub.de www.landurlaub.harz-urlaub.de
CustomLog /home/web/log/access_log_landurlaub.harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.landurlaub.harz-urlaub.de/awstats/awstats.pl?config=landurlaub.harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:100000
#CUSTOM_TAG:
#ADMIN_USERS:
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/landurlaub.harz-urlaub.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/landurlaub.harz-urlaub.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/landurlaub.harz-urlaub.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzlandurlaub
ServerName www.landurlaub.harz-urlaub.de
ServerAlias landurlaub.harz-urlaub.de www.landurlaub.harz-urlaub.de
CustomLog /home/web/log/access_log_landurlaub.harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.landurlaub.harz-urlaub.de/awstats/awstats.pl?config=landurlaub.harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:100000
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzlastminute
ServerName www.last-minute.harz-urlaub.de
ServerAlias last-minute.harz-urlaub.de www.last-minute.harz-urlaub.de
CustomLog /home/web/log/access_log_last-minute.harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.last-minute.harz-urlaub.de/awstats/awstats.pl?config=last-minute.harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:100000
#CUSTOM_TAG:
#ADMIN_USERS:
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/last-minute.harz-urlaub.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/last-minute.harz-urlaub.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/last-minute.harz-urlaub.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzlastminute
ServerName www.last-minute.harz-urlaub.de
ServerAlias last-minute.harz-urlaub.de www.last-minute.harz-urlaub.de
CustomLog /home/web/log/access_log_last-minute.harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.last-minute.harz-urlaub.de/awstats/awstats.pl?config=last-minute.harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:100000
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzlink
ServerName www.link.harz-urlaub.de
ServerAlias link.harz-urlaub.de www.link.harz-urlaub.de
CustomLog /home/web/log/access_log_link.harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.link.harz-urlaub.de/awstats/awstats.pl?config=link.harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:100000
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzneudorf
ServerName www.neudorf.harz-urlaub.de
ServerAlias neudorf.harz-urlaub.de www.neudorf.harz-urlaub.de
CustomLog /home/web/log/access_log_neudorf.harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.neudorf.harz-urlaub.de/awstats/awstats.pl?config=neudorf.harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:100000
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harznordharz
ServerName www.nordharz.harz-urlaub.de
ServerAlias nordharz.harz-urlaub.de www.nordharz.harz-urlaub.de
CustomLog /home/web/log/access_log_nordharz.harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.nordharz.harz-urlaub.de/awstats/awstats.pl?config=nordharz.harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:100000
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzoberharz
ServerName www.oberharz.harz-urlaub.de
ServerAlias oberharz.harz-urlaub.de www.oberharz.harz-urlaub.de
CustomLog /home/web/log/access_log_oberharz.harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.oberharz.harz-urlaub.de/awstats/awstats.pl?config=oberharz.harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:100000
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzpension
ServerName www.pension.harz-urlaub.de
ServerAlias pension.harz-urlaub.de www.pension.harz-urlaub.de
CustomLog /home/web/log/access_log_pension.harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.pension.harz-urlaub.de/awstats/awstats.pl?config=pension.harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:100000
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzpreiswert
ServerName www.preiswert.harz-urlaub.de
ServerAlias preiswert.harz-urlaub.de www.preiswert.harz-urlaub.de
CustomLog /home/web/log/access_log_preiswert.harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.preiswert.harz-urlaub.de/awstats/awstats.pl?config=preiswert.harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:100000
#CUSTOM_TAG:
#ADMIN_USERS:
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/preiswert.harz-urlaub.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/preiswert.harz-urlaub.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/preiswert.harz-urlaub.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzpreiswert
ServerName www.preiswert.harz-urlaub.de
ServerAlias preiswert.harz-urlaub.de www.preiswert.harz-urlaub.de
CustomLog /home/web/log/access_log_preiswert.harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.preiswert.harz-urlaub.de/awstats/awstats.pl?config=preiswert.harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:100000
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzquedlinburg
ServerName www.quedlinburg.harz-urlaub.de
ServerAlias quedlinburg.harz-urlaub.de www.quedlinburg.harz-urlaub.de
CustomLog /home/web/log/access_log_quedlinburg.harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.quedlinburg.harz-urlaub.de/awstats/awstats.pl?config=quedlinburg.harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:100000
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzradioarchiv
ServerName www.radioarchiv.harz-urlaub.de
ServerAlias radioarchiv.harz-urlaub.de www.radioarchiv.harz-urlaub.de
CustomLog /home/web/log/access_log_radioarchiv.harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.radioarchiv.harz-urlaub.de/awstats/awstats.pl?config=radioarchiv.harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:100000
#CUSTOM_TAG:
#ADMIN_USERS:
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/radioarchiv.harz-urlaub.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/radioarchiv.harz-urlaub.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/radioarchiv.harz-urlaub.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzradioarchiv
ServerName www.radioarchiv.harz-urlaub.de
ServerAlias radioarchiv.harz-urlaub.de www.radioarchiv.harz-urlaub.de
CustomLog /home/web/log/access_log_radioarchiv.harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.radioarchiv.harz-urlaub.de/awstats/awstats.pl?config=radioarchiv.harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:100000
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzschlemmer
ServerName www.schlemmerfuehrer.harz-urlaub.de
ServerAlias schlemmerfuehrer.harz-urlaub.de www.schlemmerfuehrer.harz-urlaub.de
CustomLog /home/web/log/access_log_schlemmerfuehrer.harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.schlemmerfuehrer.harz-urlaub.de/awstats/awstats.pl?config=schlemmerfuehrer.harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:100000
#CUSTOM_TAG:
#ADMIN_USERS:
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/schlemmerfuehrer.harz-urlaub.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/schlemmerfuehrer.harz-urlaub.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/schlemmerfuehrer.harz-urlaub.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzschlemmer
ServerName www.schlemmerfuehrer.harz-urlaub.de
ServerAlias schlemmerfuehrer.harz-urlaub.de www.schlemmerfuehrer.harz-urlaub.de
CustomLog /home/web/log/access_log_schlemmerfuehrer.harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.schlemmerfuehrer.harz-urlaub.de/awstats/awstats.pl?config=schlemmerfuehrer.harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:100000
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzshop
ServerName www.shop.harz-urlaub.de
ServerAlias shop.harz-urlaub.de www.shop.harz-urlaub.de schmuck.harz-urlaub.de www.schmuck.harz-urlaub.de
CustomLog /home/web/log/access_log_shop.harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.shop.harz-urlaub.de/awstats/awstats.pl?config=shop.harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:100000
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzsuedharz
ServerName www.suedharz.harz-urlaub.de
ServerAlias suedharz.harz-urlaub.de www.suedharz.harz-urlaub.de
CustomLog /home/web/log/access_log_suedharz.harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.suedharz.harz-urlaub.de/awstats/awstats.pl?config=suedharz.harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:100000
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzteichveck
ServerName www.teichwirtschaft-veckenstedt.harz-urlaub.de
ServerAlias teichwirtschaft-veckenstedt.harz-urlaub.de www.teichwirtschaft-veckenstedt.harz-urlaub.de
CustomLog /home/web/log/access_log_teichwirtschaft-veckenstedt.harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.teichwirtschaft-veckenstedt.harz-urlaub.de/awstats/awstats.pl?config=teichwirtschaft-veckenstedt.harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:100000
#CUSTOM_TAG:
#ADMIN_USERS:
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/teichwirtschaft-veckenstedt.harz-urlaub.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/teichwirtschaft-veckenstedt.harz-urlaub.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/teichwirtschaft-veckenstedt.harz-urlaub.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzteichveck
ServerName www.teichwirtschaft-veckenstedt.harz-urlaub.de
ServerAlias teichwirtschaft-veckenstedt.harz-urlaub.de www.teichwirtschaft-veckenstedt.harz-urlaub.de
CustomLog /home/web/log/access_log_teichwirtschaft-veckenstedt.harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.teichwirtschaft-veckenstedt.harz-urlaub.de/awstats/awstats.pl?config=teichwirtschaft-veckenstedt.harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:100000
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzthale
ServerName www.thale.harz-urlaub.de
ServerAlias thale.harz-urlaub.de www.thale.harz-urlaub.de
CustomLog /home/web/log/access_log_thale.harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.thale.harz-urlaub.de/awstats/awstats.pl?config=thale.harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:100000
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harztyskland
ServerName www.tyskland.harz-urlaub.de
ServerAlias tyskland.harz-urlaub.de www.tyskland.harz-urlaub.de
CustomLog /home/web/log/access_log_tyskland.harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.tyskland.harz-urlaub.de/awstats/awstats.pl?config=tyskland.harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:100000
#CUSTOM_TAG:
#ADMIN_USERS:
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/tyskland.harz-urlaub.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/tyskland.harz-urlaub.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/tyskland.harz-urlaub.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harztyskland
ServerName www.tyskland.harz-urlaub.de
ServerAlias tyskland.harz-urlaub.de www.tyskland.harz-urlaub.de
CustomLog /home/web/log/access_log_tyskland.harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.tyskland.harz-urlaub.de/awstats/awstats.pl?config=tyskland.harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:100000
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzvorharz
ServerName www.vorharz.harz-urlaub.de
ServerAlias vorharz.harz-urlaub.de www.vorharz.harz-urlaub.de
CustomLog /home/web/log/access_log_vorharz.harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.vorharz.harz-urlaub.de/awstats/awstats.pl?config=vorharz.harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:100000
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzwalpurgis
ServerName www.walpurgisnacht.harz-urlaub.de
ServerAlias walpurgisnacht.harz-urlaub.de www.walpurgisnacht.harz-urlaub.de
CustomLog /home/web/log/access_log_walpurgisnacht.harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.walpurgisnacht.harz-urlaub.de/awstats/awstats.pl?config=walpurgisnacht.harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:100000
#CUSTOM_TAG:
#ADMIN_USERS:
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/walpurgisnacht.harz-urlaub.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/walpurgisnacht.harz-urlaub.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/walpurgisnacht.harz-urlaub.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzwalpurgis
ServerName www.walpurgisnacht.harz-urlaub.de
ServerAlias walpurgisnacht.harz-urlaub.de www.walpurgisnacht.harz-urlaub.de
CustomLog /home/web/log/access_log_walpurgisnacht.harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.walpurgisnacht.harz-urlaub.de/awstats/awstats.pl?config=walpurgisnacht.harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:100000
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzwassersport
ServerName www.wassersport.harz-urlaub.de
ServerAlias wassersport.harz-urlaub.de www.wassersport.harz-urlaub.de
CustomLog /home/web/log/access_log_wassersport.harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.wassersport.harz-urlaub.de/awstats/awstats.pl?config=wassersport.harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:100000
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzweihnachten
ServerName www.weihnachten.harz-urlaub.de
ServerAlias weihnachten.harz-urlaub.de www.weihnachten.harz-urlaub.de
CustomLog /home/web/log/access_log_weihnachten.harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.weihnachten.harz-urlaub.de/awstats/awstats.pl?config=weihnachten.harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:100000
#CUSTOM_TAG:
#ADMIN_USERS:
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/weihnachten.harz-urlaub.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/weihnachten.harz-urlaub.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/weihnachten.harz-urlaub.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzweihnachten
ServerName www.weihnachten.harz-urlaub.de
ServerAlias weihnachten.harz-urlaub.de www.weihnachten.harz-urlaub.de
CustomLog /home/web/log/access_log_weihnachten.harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.weihnachten.harz-urlaub.de/awstats/awstats.pl?config=weihnachten.harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:100000
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzwellness
ServerName www.wellness.harz-urlaub.de
ServerAlias wellness.harz-urlaub.de www.wellness.harz-urlaub.de
CustomLog /home/web/log/access_log_wellness.harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.wellness.harz-urlaub.de/awstats/awstats.pl?config=wellness.harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:100000
#CUSTOM_TAG:
#ADMIN_USERS:
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/wellness.harz-urlaub.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/wellness.harz-urlaub.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/wellness.harz-urlaub.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzwellness
ServerName www.wellness.harz-urlaub.de
ServerAlias wellness.harz-urlaub.de www.wellness.harz-urlaub.de
CustomLog /home/web/log/access_log_wellness.harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.wellness.harz-urlaub.de/awstats/awstats.pl?config=wellness.harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:100000
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzwernigerode
ServerName www.wernigerode.harz-urlaub.de
ServerAlias wernigerode.harz-urlaub.de www.wernigerode.harz-urlaub.de
CustomLog /home/web/log/access_log_wernigerode.harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.wernigerode.harz-urlaub.de/awstats/awstats.pl?config=wernigerode.harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:100000
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>
<IfModule ssl_module>
<VirtualHost 83.138.87.173:443>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzwoistwaslos
ServerName www.woistwaslos.harz-urlaub.de
ServerAlias woistwaslos.harz-urlaub.de www.woistwaslos.harz-urlaub.de
CustomLog /home/web/log/access_log_woistwaslos.harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.woistwaslos.harz-urlaub.de/awstats/awstats.pl?config=woistwaslos.harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:5
#CUSTOM_TAG:
#ADMIN_USERS:
SSLEngine on
SSLCertificateFile /usr/iports/etc/letsencrypt/live/woistwaslos.harz-urlaub.de/cert.pem
SSLCertificateKeyFile /usr/iports/etc/letsencrypt/live/woistwaslos.harz-urlaub.de/privkey.pem
SSLCertificateChainFile /usr/iports/etc/letsencrypt/live/woistwaslos.harz-urlaub.de/chain.pem
Header always set Strict-Transport-Security "max-age=15768000"
<Files ~ ".(cgi|shtml|pl|php)$">
SSLOptions +StdEnvVars
</Files>
</VirtualHost>
</IfModule>
<VirtualHost 83.138.87.173:80>
ServerAdmin webmaster@3wkonzepte.de
DocumentRoot /usr/local/www/apache24/noexec/harzwoistwaslos
ServerName www.woistwaslos.harz-urlaub.de
ServerAlias woistwaslos.harz-urlaub.de www.woistwaslos.harz-urlaub.de
CustomLog /home/web/log/access_log_woistwaslos.harz-urlaub.de combined
Alias /mysql /usr/local/www/phpMyAdmin
Redirect /stats http://www.woistwaslos.harz-urlaub.de/awstats/awstats.pl?config=woistwaslos.harz-urlaub.de
<IfModule rewrite_module>
RewriteEngine On
RewriteRule ^/?\.well-known/.+ - [END]
</IfModule>
<IfModule fcgid_module>
<Location />
<IfFile /usr/iports/php70/bin/php-cgi>
FcgidWrapper /usr/iports/php70/bin/php-cgi
</IfFile>
</Location>
</IfModule>
#POP:0
#FOR:0
#AUT:0
#QUOT:5
#CUSTOM_TAG:
#ADMIN_USERS:
</VirtualHost>