No I'm just happy someone is here to help me out. Thank you!
The URL requests for tiddlers.json?filter=[all[tidd... is being made to
http://wiki/helpdeskaleer.com/recipes/undefined/tiddlers.json?filter=...URI
Encoded string
That's one of the other wiki's that I have reverse proxied...also the
initiator is `/:74 (xhr)`, is that a websocket or something? And from that
I get a 404 (since the recipes wiki isn't started).
The recipes wiki config is way up there towards the start of the config
file on line 725 or so in the file and it looks like this:
location ^~ /recipes {
access_log ./logs/recipes_access.log;
error_log ./logs/reipes_error.log;
proxy_buffers 16 4k;
proxy_buffer_size 2k;
proxy_set_header Host $host;
proxy_set_header X-Real_IP $remote_addr;
rewirte /recipes(.*) /$1 break;
proxy_pass http://wiki.helpdeskaleer.com:9137;
}
on the other hand...much futher down the nginx config on line 1065 we have:
location ^~ /windows/wsus {
access_log ./logs/wsus_access.log;
error_log ./logs/wsus_error.log;
proxy_buffers 16 4k;
proxy_buffer_size 2k;
proxy_set_header Host $host;
proxy_set_header X-Real_IP $remote_addr;
rewrite /windows/wsus(.*) /$1 break;
# proxy_pass http://wiki.helpdeskaleer.com:9171;
proxy_pass http://localhost:9171; # NOTE HERE IS WHERE I DECIDED THAT
IT SHOULD JUST BE AVAILABLE FROM THE LOCAL HOST.
}
On Wednesday, 17 June 2020 15:35:08 UTC-4, Saq Imtiaz wrote:
>
> In the browser developer console, check to see what URL the requests are
> being made to now.
>
> Sorry it's a bit difficult to debug when I don't have the same setup.
>
--
You received this message because you are subscribed to the Google Groups
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/tiddlywiki/960f99b9-faff-4210-9bad-8c69791dc670o%40googlegroups.com.