apache config – squirrel

    squirrelmail

##############################################
# squirrel webmail
##############################################
Alias /squirrelmail /usr/share/squirrelmail

Options FollowSymLinks

php_flag register_globals off


DirectoryIndex index.php

# access to configtest is limited by default to prevent information leak

order deny,allow
deny from all
allow from 127.0.0.1

apache config – owncloud

    owncloud

##############################################
# owncloud
##############################################
Alias /owncloud /var/www/owncloud

Options +FollowSymLinks
AllowOverride None
order deny,allow
allow from all
# AuthType Basic
# AuthName “owncloud”
# AuthUserFile /etc/apache2/htpasswd
# Require user olkn

apache config – acidbase

    acidbase

############################################################
# acidbase config
##############################################

Alias /acidbase “/var/www/acidbase”


Options +FollowSymLinks
AllowOverride None
order deny,allow
deny from all
allow from 192.168.4.0/255.255.255.0
AuthType Basic
AuthName “acidbase”
AuthUserFile /etc/apache2/htpasswd
Require user olkn

php_flag magic_quotes_gpc Off
php_flag track_vars On
php_value include_path .:/usr/share/php

apache config – cacti

    cacti

##############################################
# cacti website for traffic graphing
##############################################
Alias /cacti /var/www/cacti/site

Options +FollowSymLinks
AllowOverride None
order allow,deny
allow from all
AddType application/x-httpd-php .php

php_flag magic_quotes_gpc Off
php_flag short_open_tag On
php_flag register_globals Off
php_flag register_argc_argv On
php_flag track_vars On
# this setting is necessary for some locales
php_value mbstring.func_overload 0
php_value include_path .

DirectoryIndex index.php

apache config – webdav

    webdav

##############################################
# webdav Freigabe
##############################################
Alias /webdav /var/www/webdav

ForceType text/plain
AllowOverride None
SSLRequireSSL
dav on
AuthType Basic
AuthName “WebDav”
AuthUserFile /etc/apache2/htpasswd
Require user olkn

apache config – tine

    tine2.0

##############################################
# Tine2.0 installation
##############################################
Alias /tine /var/www/tine

Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
# tine needs some memory
php_admin_value memory_limit 64M
# tine insists on this
php_admin_flag magic_quotes_gpc off

RewriteEngine on
RewriteRule /Microsoft-Server-ActiveSync(.*) /var/www/tine/index.php$1 [E=REDIRECT_ACTIVESYNC:true,E=REMOTE_USER:%{HTTP:Authorization}]

Fritzbox – OpenVPN

My Fritzbox 7270 was recently configured to open a VPN tunnel to my internal network. The fritzbox config is shown below in the picture:

My Desire is configured like this:

remote olkn.homelinux.net
proto udp
dev tap
tls-client
ns-cert-type server
ca /sdcard/openvpn/ca.crt
cert /sdcard/openvpn/client.crt
key /sdcard/openvpn/client.key
tls-auth /sdcard/openvpn/static.key 1
tun-mtu 1500
mssfix
nobind
pull
cipher AES-128-CBC
verb 3

Freetz 7270 Net-SNMP config

Here is the configuration for NET-SNMP running on my FB7270 with freetz:
rocommunity public 192.168.4.0/24
sysname freetz.7270
syslocation Serverraum
syscontact olkn@steppenwolf.de
sysservices 78
agentaddress 192.168.4.250

anyterm

I just successfully installed anyterm on my homepage hosted on my sheeva plug. The successfull command was:
./anytermd -p 5000 –user olkn –auth null -c “ssh olkn@localhost”
I had several issues with authentication and the correct user to choose but now it is running and I have shell access to my sheeva plug using an SSL encrypted apache page.
The proxy passage for apache is as follows. Of course you need to install mod_proxy first.

# anyterm proxy

ProxyPass http://localhost:5000/
ProxyPassReverse http://localhost:5000/
AuthType Basic
AuthName “anyterm”
AuthUserFile /etc/apache2/htpasswd
Require user olkn