[tips] Configurazione di Apache2 come reverse proxy di Owa

Per accedere ad Owa attraverso un server web Apache configurato in reverse proxy, questa è la configurazione da utilizzare <VirtualHost public.domain.com:443> ServerAdmin webmaster@domain.com ServerName public.domain.com DocumentRoot /var/www/public RequestHeader set Front-End-Https "On" ProxyRequests Off ProxyPreserveHost On SSLEngine On SSLCertificateFile conf/extranet-ssl-cert.pem <Location /exchange> ProxyPass http://private.domain.com/exchange ProxyPassReverse http://private.domain.com/exchange SSLRequireSSL </Location> <Location /exchweb> ProxyPass…

[howto] Accesso SSH con certificato via Putty

Innanzitutto è necessario configurare il server per accettare l’autenticazione via RSA, modificando il file di configurazione che si trova in /etc/ssh/sshd_config nano -w /etc/ssh/sshd_config In particolare, occorre verificare che siano presenti (e non commentate) la righe: AuthorizedKeysFile      %h/.ssh/authorized_keys RhostsRSAAuthentication yes A questo punto, occorre generae una coppia di chiavi (pubblica…