-
Hello, I have a subdomain working from my registrar point of view (project.domain.tld points to my public adress) and connecting to the website with I have tried to setup a secure connection using sqlpage's integrated certificate management (as described in https://github.com/sqlpage/SQLPage?tab=readme-ov-file#https) and so my {
"database_url": "sqlite:///etc/sqlpage/sqlpage.db?mode=rwc",
"https_domain": "project.domain.tld"
} After restarting the docker container, I can no longer connect to the website, but something has happened because the server refuses to connect in In case it is to take into account, Any clue or idea welcome, is this idea simply possible with a subdomain ? Is there a verification step towards an email from the domain used ? Thanks. (If needed, the project code can be found here : https://framagit.org/audionuma/ministock) |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
Hello! Can you please run SQLPage in debug mode and paste the debug logs here? |
Beta Was this translation helpful? Give feedback.
-
Also, you mention using docker. Did you use docker's port option ( |
Beta Was this translation helpful? Give feedback.
-
Thank you for your answer. TL;DR : Problem solved. The issue was actually the mapping of port 443 that I hadn't set into the docker launch parameters. Following your suggestion of mapping the
The current working script : #! /bin/bash
docker run -itd --restart always --name sqlpage -p 80:8080 -p 443:443 --volume "$(pwd)/src:/var/www" --volume "$(pwd)/configuration:/etc/sqlpage" lovasoa/sqlpage |
Beta Was this translation helpful? Give feedback.
Also, you mention using docker. Did you use docker's port option (
-p
) to forward the https port?-p 443:443