summaryrefslogtreecommitdiffhomepage
path: root/provisioning
AgeCommit message (Collapse)Author
2025-11-02feat(provisioning): update domainsnsfisis
2024-04-02fix(blog/proxy): fix an issue where one cannot access to slash-less pathnsfisis
# Problem Access to `https://blog.nsfisis.dev/foo/bar` was redirected to `http://127.0.0.1/foo/bar/`. # Cause Nginx inside Docker container listened to port 80, but Docker bound the port to the host's 8001 port. The reverse proxy, mioproxy, was configured to rewrite `http://127.0.0.1:8001/*` to `https://blog.nsfisis.dev/*`, which cannot handle `http://127.0.0.1:80/*`. # Solution Change the inner port that Nginx listens to to 8001. Also update mioproxy version.
2023-10-08feat(proxy): mioproxynsfisis