Hi,
I've installed tiddlyWiki via Node.js on my home server.
I'm protecting the TWiki server by an nginx proxy.
Unfortunately the autosave doesn't work, i don't know what log to look at
to find the problem (i mean other than nginx logs).
Is it due to the proxy ? Some missing permission ?
Thanks in advance for your help.
Here some more information about my configuration :
root@:/var/www# ls -ld tiddlywiki/
drwxr-xr-x 2 nginx nginx 4096 Dec 18 10:56 tiddlywiki/
root@:/var/www# ls -l tiddlywiki/
-rw-r--r-- 1 nginx nginx 1454 Dec 18 10:56 tiddlywiki.info
root@web:/var/www# ps -ef |grep tiddly
root 5894 1 0 14:21 ? 00:00:09 node /usr/bin/tiddlywiki /
var/www/tiddlywiki --server
root@web:/var/www# cat /etc/nginx/conf.d/tiddly.conf
server {
listen 80 ;
server_name HOSTNAME ;
return 301 https://HOSTNAME ;
}
server {
listen 443 ssl spdy;
server_name HOSTNAME ;
root /var/www/tiddlywiki ;
... some conf for ssl
location / {
proxy_pass http://127.0.0.1:8080;
proxy_max_temp_file_size 0 ;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}
--
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 post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.