This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
| ghost [2021/08/25 15:24] – created alexk7110 | ghost [2021/08/28 10:15] (current) – [docker run command] alexk7110 | ||
|---|---|---|---|
| Line 2: | Line 2: | ||
| nginx proxy manager tutorial | nginx proxy manager tutorial | ||
| https:// | https:// | ||
| + | |||
| + | The linuxserver.io docker container exposes only port 80 thus making the need for a reverse proxy mandatory in order to host an internet facing blog with it. | ||
| + | |||
| + | You don't need to expose the application ports to the server since nginx that runs on docker creates an internal docker bridge and you simply connect your apps to that. | ||
| + | ---- | ||
| + | ===== docker run command ===== | ||
| + | <code bash ghost> | ||
| + | docker run -d \ | ||
| + | --name=ghost \ | ||
| + | --network=nginx_reverse_proxy_default \ | ||
| + | -e url=https:// | ||
| + | -v ${PWD}/ | ||
| + | --restart unless-stopped \ | ||
| + | ghost | ||
| + | </ | ||