This commit is contained in:
Marcel Pociot
2020-06-16 00:09:04 +02:00
parent 4a56890862
commit 645330f08f
8 changed files with 23 additions and 20 deletions

View File

@@ -5,9 +5,9 @@ order: 2
# SSL Support
Once your Expose server is running, you can onyl access it over the port that you configure when the server gets started.
Once your Expose server is running, you can only access it over the port that you configure when the server gets started.
If you want to enable SSL support, you will need to use a proxy service - like Nginx, HAProxy or Caddy - to handle the SSL configurations and proxy all requests in plain HTTP to your expose server.
If you want to enable SSL support, you will need to use a proxy service - like Nginx, HAProxy or Caddy - to handle the SSL configurations and proxy all non-SSL requests to your expose server.
A basic Nginx configuration would look like this, but you might want to tweak the SSL parameters to your liking.
@@ -36,4 +36,4 @@ server {
proxy_cache_bypass $http_upgrade;
}
}
```
```