OK, so because this is an alpha project, I’m gonna try and be as verbose as possible.
I can’t submit new posts. The error I get on hitting the submit button is a 401. I’ve tried logging out and back in again, but that doesn’t help.
I just set up a Write Freely instance. It’s set as single-user. I have it running behind Caddy, not nginx. My Caddyfile is this:
blog.ironarachne.com {
tls ben@ironarachne.com
proxy / localhost:8183
}
In this context, I’ve customized Write Freely to run on port 8183. It’s running under systemd. Here is my unit file:
[Unit]
Description=Write Freely service
After=network.target
[Service]
Type=simple
User=www-data
WorkingDirectory=/srv/writefreely
ExecStart=/srv/writefreely/writefreely
Restart=on-failure
[Install]
WantedBy=multi-user.target
I imagine this is an artifact of not doing the prescribed way. Happy to help get to the root cause.