I'm completely new to TW and Cardo and struggling to find out where to start. I'm looking to get some help for my particular use case... which I don't think is particularly unusual but I'm finding that the he myriad options available in the TW world means that I can't even see my way through.
I'm trying to setup a family business GTD system with note taking abilities...hence Cardo. The problem comes with my additional requirements...cross platform and multi user...also I'm computer literate but my wife and son would be completely lost if there was anything other than a pretty simple interface.
Is it possible to serve Cardo/TW on Linux using node.js and have (near) synchronous edits from Windows/android...or an easy update/merge process. Or use the Dropbox/GDrive plugins.
Would love to be able to get to grips with Cardo/TW but don't have masses of time to play with it for weeks/months to find out if it suits my purposes.
Any help gratefully received.
Regards, Paul.
apt-get install node
npm install -g tiddlywiki
cd /wherever/I/want/myTW
tiddlywiki NameOfMyNewTW --init server
/usr/local/bin/tiddlywiki /wherever/I/want/myTW/NameOfMyNewTW --server 8001 "" "" "" SharedUserName PaSSw0rD 192.168.0.1
<IfModule mod_ssl.c>
<VirtualHost *:443>
ServerName my.domain.com
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
<Proxy *>
Order Deny,Allow
Require all granted
</Proxy>
RewriteEngine On
RewriteCond %{LA-U:REMOTE_USER} !^${TW5USER}$
RewriteCond %{REQUEST_METHOD} !^(GET|HEAD|PUT|DELETE|POST)
RewriteRule .* - [R=405,L]
Header merge Cache-Control no-cache
Header set Access-Control-Allow-Origin "*"
AllowEncodedSlashes On
AllowCONNECT 443 8001
ProxyRequests On
ProxyPass "/" "http://192.168.0.1:8001/"
ProxyPassReverse "/" "http://192.168.0.1:8001"
ProxyVia On
ProxyPreserveHost On
SSLEngine On
SSLCertificateFile /etc/letsencrypt/live/my.domain.com/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/my.domain.com/privkey.pem
</VirtualHost>
</IfModule>
Regards, Paul.
I'm using port 8001 but when I do a Jetstar it doesn't show up anywhere.
Thanks in advance.
Regards,
Paul.
Thanks for the FYIs..knew abt localhost but not 0.0.0.0.
Will keep you posted..
Thanks again for your help.
Cheers Paul.
/usr/local/bin/tiddlywiki /home/pi/TW/LemWiki --server 8001 "" "" "" SharedUserName PaSSw0rD 192.168.0.15
Where the IP address is the one from my server, ie the raspberry pi. In your example you used 192.168.0.1 which on my network is the router.
Rgds Paul.
Regards Paul.