Updated Webserver Reverse Proxy (markdown)

Stetsed 2021-07-15 16:00:16 +00:00
parent f048a5924a
commit 2fac34752f

@ -36,8 +36,6 @@ server {
}
```
For ease of use with NGINX use Certbot, which will manage certificates from Let's encrypt. And automatically renew them.
### Apache
Without SSL:
```apache
@ -76,4 +74,10 @@ Without SSL:
subdomain.domain.com {
reverse_proxy 127.0.0.1:3001 :
}
```
```
### SSL
It is recommended to use SSL(HTTPS) with your web-server to avoid MiTM attacks when on a public network. If using caddy these certificates will be auto-generated by caddy and will keep them updated.
If your using Apache or NGINX, it is recommended to use CertBot to manage SSL for free, it uses Let's Encrypt to get it's certificates and keeps them renewed. You can also use your own Certificates and place them as shown above. If using cerbot use the "Without SSL" settings and then run certbot on it and it will automatically configure auto-HTTPS redirection.