Verlauf der Änderungen der Seite NginxKonfigurieren
Hinzugefügt:
((1)) Let's Encrypt
Einrichtung der Zertifikate bei NGINX ist [[http://www.erdaxo.de/LetsEncrypt#section_1 hier beschrieben]].
Einrichtung der Zertifikate bei NGINX ist [[http://www.erdaxo.de/LetsEncrypt#section_1 hier beschrieben]].
Hinzugefügt:
Hier steht insbesondere eine Lösung im Fokus, Kommunikation vom proxy-Server (beim Provider) auf einen Server im LAN hinter NAT (per VPN verbunden) umzuleiten - wohl deshalb Kompression eingeschaltet...
Hinzugefügt:
server_name my.domainname.com;
proxy_pass http://otherserver:8080;
proxy_pass http://otherserver:8080;
Gelöscht:
proxy_pass http://localhost:8764;
Hinzugefügt:
# prüfen, ob es funktioniert:
((1)) Reverse proxy konfigurieren
# edit file "/etc/nginx/sites-available/default":
server {
listen 80;
listen [::]:80;
server_name my.awesome-domain-name.com;
gzip on;
gzip_comp_level 5;
location / {
proxy_pass http://localhost:8764;
proxy_set_header Host $http_host;
}
}
((1)) Reverse proxy konfigurieren
# edit file "/etc/nginx/sites-available/default":
server {
listen 80;
listen [::]:80;
server_name my.awesome-domain-name.com;
gzip on;
gzip_comp_level 5;
location / {
proxy_pass http://localhost:8764;
proxy_set_header Host $http_host;
}
}
Gelöscht:
((1)) Erste Schritte
Hinzugefügt:
%%(perl)
Gelöscht:
Hinzugefügt:
; prüfen, ob es funktioniert:
Gelöscht:
Hinzugefügt:
// prüfen, ob es funktioniert:
systemctl status nginx
systemctl status nginx
Hinzugefügt:
Eigentlich normal installieren (debian):
%%(bash)
# as root
apt update
apt install nginx
%%(bash)
# as root
apt update
apt install nginx
Gelöscht:
insert-source-code-here
Hinzugefügt:
%%(perl)
insert-source-code-here
%%
insert-source-code-here
%%