Files
ShooterHub-ReverseProxy/httpd.conf
Gérald Colangelo 64b2f04bd1 wip
2026-03-20 16:28:09 +01:00

197 lines
5.8 KiB
ApacheConf

ServerRoot "/usr/local/apache2"
ServerName main.shooter-hub.com
ServerAdmin admin@shooter-hub.com
User www-data
Group www-data
Listen 80
Listen 443
LoadModule rewrite_module modules/mod_rewrite.so
LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_fcgi_module modules/mod_proxy_fcgi.so
LoadModule proxy_html_module modules/mod_proxy_html.so
LoadModule proxy_http_module modules/mod_proxy_http.so
LoadModule ssl_module modules/mod_ssl.so
LoadModule mpm_event_module modules/mod_mpm_event.so
LoadModule authn_file_module modules/mod_authn_file.so
LoadModule authn_core_module modules/mod_authn_core.so
LoadModule authz_host_module modules/mod_authz_host.so
LoadModule authz_groupfile_module modules/mod_authz_groupfile.so
LoadModule authz_user_module modules/mod_authz_user.so
LoadModule authz_core_module modules/mod_authz_core.so
LoadModule access_compat_module modules/mod_access_compat.so
LoadModule auth_basic_module modules/mod_auth_basic.so
LoadModule reqtimeout_module modules/mod_reqtimeout.so
LoadModule filter_module modules/mod_filter.so
LoadModule mime_module modules/mod_mime.so
LoadModule log_config_module modules/mod_log_config.so
LoadModule env_module modules/mod_env.so
LoadModule headers_module modules/mod_headers.so
LoadModule setenvif_module modules/mod_setenvif.so
LoadModule version_module modules/mod_version.so
LoadModule unixd_module modules/mod_unixd.so
LoadModule status_module modules/mod_status.so
LoadModule autoindex_module modules/mod_autoindex.so
LoadModule dir_module modules/mod_dir.so
LoadModule alias_module modules/mod_alias.so
DocumentRoot "/var/www/"
LogLevel alert rewrite:trace3
<Directory />
AllowOverride none
Require all denied
</Directory>
<Directory "/var/www">
Options Indexes FollowSymLinks
AllowOverride None
Require all granted
</Directory>
<IfModule dir_module>
DirectoryIndex index.html
</IfModule>
<Files ".ht*">
Require all denied
</Files>
ErrorLog /proc/self/fd/2
LogLevel warn
<IfModule log_config_module>
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>
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
</IfModule>
CustomLog /proc/self/fd/1 common
</IfModule>
<IfModule alias_module>
ScriptAlias /cgi-bin/ "/usr/local/apache2/cgi-bin/"
</IfModule>
<IfModule mime_module>
TypesConfig conf/mime.types
AddType application/x-compress .Z
AddType application/x-gzip .gz .tgz
</IfModule>
<IfModule proxy_html_module>
Include conf/extra/proxy-html.conf
</IfModule>
<IfModule ssl_module>
SSLRandomSeed startup builtin
SSLRandomSeed connect builtin
</IfModule>
<VirtualHost *:443>
ServerName www.shooter-hub.com
ServerAdmin admin@shooter-hub.com
DocumentRoot /var/www/html
SSLEngine on
SSLCertificateFile /etc/letsencrypt/live/www.shooter-hub.com/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/www.shooter-hub.com/privkey.pem
# Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
# error, crit, alert, emerg.
# It is also possible to configure the loglevel for particular
# modules, e.g.
LogLevel info
ProxyPass "/" "http://prod-web:5000/"
ProxyPassReverse "/" "http://prod-web:5000/"
ProxyRequests Off
ProxyPreserveHost On
AllowEncodedSlashes On
RequestHeader set X-Forwarded-Proto "https"
RequestHeader set X-Forwarded-Port "443"
</VirtualHost>
<VirtualHost *:80>
ServerName www.shooter-hub.com
ServerAdmin admin@shooter-hub.com
DocumentRoot /var/www/
RewriteEngine on
RewriteRule /(.well-known/acme-challenge/.*) /certbot/$1 [L]
RewriteRule /(.*)$ https://%{SERVER_NAME}/ [R]
RewriteRule / https://%{SERVER_NAME}/ [R]
</VirtualHost>
<VirtualHost *:443>
ServerName dev.shooter-hub.com
ServerAdmin admin@shooter-hub.com
DocumentRoot /var/www/html
SSLEngine on
SSLCertificateFile /etc/letsencrypt/live/dev.shooter-hub.com/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/dev.shooter-hub.com/privkey.pem
# Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
# error, crit, alert, emerg.
# It is also possible to configure the loglevel for particular
# modules, e.g.
LogLevel info
ProxyPass "/" "http://dev-web:5000/"
ProxyPassReverse "/" "http://dev-web:5000/"
ProxyRequests Off
ProxyPreserveHost On
AllowEncodedSlashes On
RequestHeader set X-Forwarded-Proto "https"
RequestHeader set X-Forwarded-Port "443"
</VirtualHost>
<VirtualHost *:80>
ServerName dev.shooter-hub.com
ServerAdmin admin@shooter-hub.com
DocumentRoot /var/www/
RewriteEngine on
RewriteRule /(.well-known/acme-challenge/.*) /certbot/$1 [L]
RewriteRule /(.*)$ https://%{SERVER_NAME}/ [R]
RewriteRule / https://%{SERVER_NAME}/ [R]
</VirtualHost>
<VirtualHost *:443>
ServerName komodo.shooter-hub.com
ServerAdmin admin@shooter-hub.com
DocumentRoot /var/www/html
SSLEngine on
SSLCertificateFile /etc/letsencrypt/live/komodo.shooter-hub.com/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/komodo.shooter-hub.com/privkey.pem
# Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
# error, crit, alert, emerg.
# It is also possible to configure the loglevel for particular
# modules, e.g.
LogLevel info
ProxyPass "/" "http://komodo-core-1:9120/"
ProxyPassReverse "/" "http://komodo-core-1:9120/"
ProxyRequests Off
ProxyPreserveHost On
AllowEncodedSlashes On
RequestHeader set X-Forwarded-Proto "https"
RequestHeader set X-Forwarded-Port "443"
</VirtualHost>
<VirtualHost *:80>
ServerName komodo.shooter-hub.com
ServerAdmin admin@shooter-hub.com
DocumentRoot /var/www/
RewriteEngine on
RewriteRule /(.well-known/acme-challenge/.*) /certbot/$1 [L]
RewriteRule /(.*)$ https://%{SERVER_NAME}/ [R]
RewriteRule / https://%{SERVER_NAME}/ [R]
</VirtualHost>