Posted by artodeto on Wednesday, October 29. 2014
Pro Linux hat ein kleines How To veröffentlicht, wie man sich einen Proxy mit linux aufsetzt.
Für arch linux arm muss man einiges beachten.
Installiere "apache" um "htpasswd" zu erhalten
pacman -S squid apache
ersetze "squid2" mit "squid" in allen Pfaden oder Nennungen
Kommentare lesen, die sind gut und wichtig!
Verbindung mit Hilfe von ssh sichern: >>ssh benutzer@meinraspberrypidaheim.dyndns.org -D 127.0.0.1:3128 -C<<
Posted by artodeto on Tuesday, October 21. 2014
I am happy to announce the release of 1.0.0 of bazzlines zend framework 2 console helper module for php.
It is a backport of the existing locator generator module .
Posted by artodeto on Tuesday, October 21. 2014
I am happy to announce the release of 1.0.0 of bazzlines zend framework 2 locator generator module for php.
It is a backport of the existing locator generator module .
Posted by artodeto on Wednesday, October 15. 2014
I played around with a file synchronisation tool called syncthing v0.10.1 and here is the outcome.
How To
enable gui to outside
change
<gui enabled="true" tls="false">
<address>127.0.0.1:8080</address>
</gui>
to (enable tls is optional)
<gui enabled="true" tls="true">
<address>0.0.0.0:8080</address>
</gui>
You should add user name and password for gui authentication as soon as possbile.
change default directory
change
<folder id="default" path="/home/<user>/Sync" ro="false" rescanIntervalS="60" ignorePerms="false">
to
<folder id="default" path="/home/<user>/<your folder path>" ro="false" rescanIntervalS="60" ignorePerms="false">
excluding files
put a .stignore file into the root of your sharing directory
patterns
// - comment (no effect)
- regular file name or file paths
zero or more character but not directory separator
** - zero or more character with directory separator
? - single character that is not the directory separator
/ - matches in current directory only
#include - load patterns from a file
! - negates the pattern (files that are not ignored)