-
I try to set up remark42 for my Hugo web site without sub domain and followed this description. Unfortunately, nginx complaints when I start the service:
The reason is the line Do you have any idea what I have to change? The container is named "remark42" (without quotation marks) and is up and running.
That's my
And that's my nginx conf:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
It would work only if your Nginx will be running in the docker-compose as well, which might be not the case. If I am right, you should expose remark42 to the host: ports:
- "127.0.0.1:8080:8080" Then change |
Beta Was this translation helpful? Give feedback.
It would work only if your Nginx will be running in the docker-compose as well, which might be not the case. If I am right, you should expose remark42 to the host:
Then change
proxy_pass http://remark42:8080/;
toproxy_pass http://localhost:8080/;
, which should allow your Nginx to see the remark42 properly.