Als Alternative zu Apache kannst du unter Linux Nginx als Reverse Proxy vor teamspace betreiben. Nginx nimmt die Anfragen auf Port 80/443 entgegen, terminiert das SSL-Zertifikat und leitet sie an den Tomcat (127.0.0.1:8080) weiter.
Nur Linux: Diese Variante ist ausschließlich für Linux-Installationen vorgesehen.
Installation & Konfiguration
Installiere Nginx:
apt install nginx
Navigiere nach /etc/nginx/sites-available und erstelle dort die Datei projectfacts. Trage folgende Beispielkonfiguration ein und passe Platzhalter wie [IP-Adresse], URL und die Zertifikatspfade an:
server {
listen [IP-Adresse]:80;
server_name [Domain_URL];
return 301 https://$host$request_uri;
}
server {
listen [IP-Adresse]:443 ssl http2;
index index.html index.php;
server_name URL;
gzip on;
error_log /var/log/nginx/URL_httpd_error_log;
access_log /var/log/nginx/URL_httpd_access_log combined;
ssl_certificate /etc/letsencrypt/live/URL/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/URL/privkey.pem;
ssl_session_timeout 1d;
ssl_session_cache shared:MozSSL:10m;
ssl_session_tickets off;
ssl_dhparam /etc/nginx/ssl/dhparam;
ssl_protocols TLSv1.2 TLSv1.3;
ssl_ciphers ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384;
ssl_prefer_server_ciphers off;
add_header Strict-Transport-Security "max-age=63072000" always;
ssl_stapling on;
ssl_stapling_verify on;
location /.well-known/acme-challenge/ {
proxy_pass http://127.0.0.1:8080/htdocs/.well-known/acme-challenge/;
}
location /ws/ {
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_set_header Host $host;
proxy_pass http://127.0.0.1:8080/ws/;
}
location / {
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Host $host:$server_port;
proxy_set_header X-Forwarded-Server $host;
proxy_set_header X-Forwarded-Proto https;
proxy_pass http://127.0.0.1:8080/;
}
}
Aktiviere die Seite (Symlink nach sites-enabled) und starte den Nginx-Server neu.
Typische Fragen & Anforderungen
| Du möchtest … | So geht’s |
|---|---|
| HTTP auf HTTPS umleiten | Der :80-Server-Block mit return 301 https://$host$request_uri; erledigt das. |
| WebSocket-Verbindungen (Live-Updates) | Den location /ws/-Block mit Upgrade/Connection-Headern übernehmen. |
| Let’s-Encrypt-Erneuerung über die Webroot | Der location /.well-known/acme-challenge/-Block leitet die ACME-Challenge an den Tomcat. |
| Apache statt Nginx | Siehe Apache als Reverse Proxy (Linux & Windows). |
Verwandte Themen
- Apache als Reverse Proxy einrichten Installation Konfiguration
- teamspace unter Linux installieren Installation Konfiguration
- teamspace mit Docker installieren Installation Konfiguration