2021-12-30 12:05:56 +01:00
|
|
|
<VirtualHost *:80>
|
2022-01-27 20:30:35 +01:00
|
|
|
ServerName shareeapp-operator.example.tld
|
|
|
|
ServerAlias shareeapp-operator1.example.tld
|
2021-12-30 12:05:56 +01:00
|
|
|
|
2022-11-16 21:22:00 +01:00
|
|
|
ServerAdmin admin@example.tld
|
2021-12-30 12:05:56 +01:00
|
|
|
DocumentRoot /var/www/copri4/shareeapp-operator
|
|
|
|
|
|
|
|
ErrorLog /var/log/apache2/shareeapp-operator-error.log
|
|
|
|
LogLevel info ssl:warn
|
|
|
|
CustomLog /var/log/apache2/shareeapp-operator-access.log combined
|
|
|
|
ServerSignature Off
|
|
|
|
RewriteEngine on
|
2022-01-27 20:30:35 +01:00
|
|
|
RewriteCond %{SERVER_NAME} =shareeapp-operator.example.tld
|
2021-12-30 12:05:56 +01:00
|
|
|
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent]
|
|
|
|
</VirtualHost>
|
|
|
|
|
|
|
|
<IfModule mod_ssl.c>
|
|
|
|
<VirtualHost *:443>
|
2022-01-27 20:30:35 +01:00
|
|
|
ServerName shareeapp-operator1.example.tld
|
2022-11-16 21:22:00 +01:00
|
|
|
ServerAdmin admin@example.tld
|
2021-12-30 12:05:56 +01:00
|
|
|
DocumentRoot /var/www/copri4/shareeapp-operator
|
|
|
|
AddHandler cgi-script .cgi .sh .pl
|
|
|
|
|
|
|
|
<Directory /var/www/copri4/shareeapp-operator>
|
|
|
|
Options -Indexes +FollowSymLinks +ExecCGI
|
|
|
|
AllowOverride None
|
|
|
|
</Directory>
|
|
|
|
|
|
|
|
<FilesMatch ".(eot|ttf|otf|woff|woff2)">
|
2022-01-27 20:30:35 +01:00
|
|
|
Header set Access-Control-Allow-Origin "example.tld"
|
2021-12-30 12:05:56 +01:00
|
|
|
</FilesMatch>
|
|
|
|
|
|
|
|
<Directory /var/www/copri4/shareeapp-operator/site>
|
|
|
|
Options -Indexes +FollowSymLinks -ExecCGI
|
|
|
|
Order allow,deny
|
|
|
|
Allow from all
|
|
|
|
</Directory>
|
|
|
|
|
|
|
|
<Directory /var/www/copri4/shareeapp-operator/cache>
|
|
|
|
Options -Indexes +FollowSymLinks
|
|
|
|
Order allow,deny
|
|
|
|
Allow from all
|
|
|
|
ForceType application/octet-stream
|
|
|
|
Header set Content-Disposition attachment
|
|
|
|
</Directory>
|
|
|
|
|
|
|
|
ErrorLog /var/log/apache2/shareeapp-operator-error.log
|
|
|
|
LogLevel info ssl:warn
|
|
|
|
CustomLog /var/log/apache2/shareeapp-operator-access.log combined
|
|
|
|
ServerSignature Off
|
2022-12-10 15:47:22 +01:00
|
|
|
SSLCertificateFile /etc/ssl/certs/ssl-cert-snakeoil.pem
|
|
|
|
SSLCertificateKeyFile /etc/ssl/private/ssl-cert-snakeoil.key
|
2021-12-30 12:05:56 +01:00
|
|
|
</VirtualHost>
|
|
|
|
|
|
|
|
|
|
|
|
<VirtualHost *:443>
|
2022-01-27 20:30:35 +01:00
|
|
|
ServerName shareeapp-operator.example.tld
|
2022-11-16 21:22:00 +01:00
|
|
|
ServerAdmin admin@example.tld
|
2021-12-30 12:05:56 +01:00
|
|
|
DocumentRoot /var/www/copri4/shareeapp-operator
|
|
|
|
|
|
|
|
PerlOptions +Parent
|
|
|
|
PerlRequire /var/www/copri4/shareeapp-operator/startup.pl
|
|
|
|
|
|
|
|
<Location />
|
|
|
|
SetHandler perl-script
|
|
|
|
PerlResponseHandler Mod::Indexsharee
|
|
|
|
PerlInitHandler Apache2::Reload
|
|
|
|
PerlOptions +ParseHeaders +GlobalRequest
|
|
|
|
Options -ExecCGI +FollowSymLinks
|
|
|
|
Order allow,deny
|
|
|
|
Allow from all
|
|
|
|
</Location>
|
|
|
|
|
|
|
|
<Location /APIjsonserver>
|
|
|
|
SetHandler perl-script
|
|
|
|
PerlInitHandler Apache2::Reload
|
|
|
|
PerlResponseHandler Mod::APIjsonserver
|
|
|
|
</Location>
|
|
|
|
|
|
|
|
<Location /FileOut>
|
|
|
|
SetHandler perl-script
|
|
|
|
PerlInitHandler Apache2::Reload
|
|
|
|
PerlResponseHandler Mod::FileOut
|
|
|
|
</Location>
|
|
|
|
|
|
|
|
<IfModule mod_rewrite.c>
|
|
|
|
RewriteEngine On
|
|
|
|
RedirectMatch ^/$ /app/Anmelden
|
|
|
|
SSLProxyEngine On
|
|
|
|
RewriteCond %{REQUEST_URI} ^/(site|img|data|css|js|jquery)
|
2022-01-27 20:30:35 +01:00
|
|
|
RewriteRule ^(.*)$ https://shareeapp-operator1.example.tld/$1 [P,L]
|
2021-12-30 12:05:56 +01:00
|
|
|
</IfModule>
|
|
|
|
|
|
|
|
ErrorLog /var/log/apache2/shareeapp-operator-error.log
|
|
|
|
LogLevel info ssl:warn
|
|
|
|
CustomLog /var/log/apache2/shareeapp-operator-access.log combined
|
|
|
|
ServerSignature Off
|
2022-12-10 15:47:22 +01:00
|
|
|
SSLCertificateFile /etc/ssl/certs/ssl-cert-snakeoil.pem
|
|
|
|
SSLCertificateKeyFile /etc/ssl/private/ssl-cert-snakeoil.key
|
2021-12-30 12:05:56 +01:00
|
|
|
</VirtualHost>
|
|
|
|
|
|
|
|
</IfModule>
|
|
|
|
|