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;
}
}
Do you have thos plugins installed? Check it on the control panel.
Indeed, I don't have these 2 plugins installed, but these 2 mandatory plugins are not listed in the documentation.
But how do i install them ? I mean apart the github repository there is no link on tiddlywiki.com for these 2 plugins, and when i drag/drop the git repository it only save the hyperlink.
--
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 tiddlywiki+...@googlegroups.com.
To post to this group, send email to tiddl...@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.