FAQ Suggestions

2023-02-18 Thread Ivo Welch
1. is this mailing list the correct place to suggest additions to the FAQ? 2. why does ``` location /wth { root /var/www/fcgi-bin/; index wth-root.html; } ``` not resolve '/wth' (but incidentally does resolve '/wth-root.html', though not '/wth-root'). I have been scratching my head about

Re: FAQ Suggestions

2023-02-18 Thread nanaya
Hi On Sun, Feb 19, 2023, at 10:27, Ivo Welch wrote: > 2. why does > > ``` > location /wth { >root /var/www/fcgi-bin/; >index wth-root.html; > } > ``` > > not resolve '/wth' (but incidentally does resolve '/wth-root.html', > though not '/wth-root'). > it's one of the common confusions. Ju

Private location does not work

2023-02-18 Thread Saint Michael
> > I have two locations /x /yy the public one is /y, nobody is supposed to access /x from the Internet. Inside /, I call /x, but if I do this: location /asr { default_type 'text/html; charset=UTF-8'; allow 127.0.0.1; deny all; it fails with forbidden. But I am usi