-
BackendI run the remark42 server-side binary like this:
FrontendHowever, I cannot fetch embed.js:
This is how it looks in the browser:
I reread the docs several times but haven't found any clues. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 9 replies
-
Unless the part of your setup is not provided, I don't see how this is supposed to work. You are running remark42 on port 8080, HTTP, but access it on port 443 HTTPS. Such a configuration may work only in case if you run it behind a reverse proxy of some kind (see 1 and 2) taking care of https termination and request's forwarding If you want to run remark42 and expose it directly on https you should set SSL parameters appropriately, i.e. |
Beta Was this translation helpful? Give feedback.
Unless the part of your setup is not provided, I don't see how this is supposed to work. You are running remark42 on port 8080, HTTP, but access it on port 443 HTTPS. Such a configuration may work only in case if you run it behind a reverse proxy of some kind (see 1 and 2) taking care of https termination and request's forwarding
If you want to run remark42 and expose it directly on https you should set SSL parameters appropriately, i.e.
--ssl.type=auto --ssl.port=443
. In this case you will have remark42 listening on port 443, and handling SSL certificate for you. Pls note: this will not work if you already have another web server running on the same box and on the same port