I broke my node.js wiki. Can I get some guidance to fix it? I suspect it using the DAV saver, but I don't know how to go about fixing that or why it started.
When I load
https://external-url:443/ , the default page loads and renders, but the save icon (diskette) remains red for about 5 seconds, and then I get "
syncer-browser-tiddlyweb - 18:09:46 26 8 2019 Sync error while processing '$:/StoryList': XMLHttpRequest error code: 404".
When I use external-url, traffic passes through an Apache HTTPS proxy for authentication. When I use internal-url, traffic goes directly to my node.js tiddlywiki via my LAN. I'm getting the following in my Apache log file:
[26/Aug/2019:17:54:08 -0400] "GET / HTTP/1.1" 200 2677647 "-" "Mozilla/5.0"
[26/Aug/2019:17:54:14 -0400] "PUT /recipes/default/tiddlers/%24%3A%2FStoryList HTTP/1.1" 404 723 "https://pkb.kleinfelter.org/" "Mozilla/5.0"
It broke sometime in the last 5 days, but I don't know exactly when it broke, so I can't just un-do whatever change broke it. It has been a long time since I upgraded my Tiddlywiki, but I have been messing with my Apache config. It has been months since I added a plugin (long before the problem started) but I make near daily updates to content. I tried restoring an old Apache config, but that didn't fix it.
My vhost looks like this:
<VirtualHost *:443>
ServerName external-host-name
Include cert.conf
ProxyRequests Off
ProxyPreserveHost on
SSLEngine On
SSLProxyEngine On
<Location "/">
AuthType Basic
AuthName "Restricted Content"
AuthUserFile /home/user1/sites/tw-apache/apache-passwords
Require valid-user
</Location>
</VirtualHost>
Suggestions?