Webmin (Linux): Unterschied zwischen den Versionen

Aus Tutorials
Zur Navigation springen Zur Suche springen
Zeile 15: Zeile 15:
<pre>
<pre>
sudo apt-get install --fix-broken
sudo apt-get install --fix-broken
</pre>
<pre>
sudo nano /etc/webmin/miniserv.conf
</pre>
<pre>
ssl=0
</pre>
<pre>
<VirtualHost *:80>
        ServerName webmin.<domain>
        ProxyPreserveHost On
        ProxyRequests Off
        ProxyVia Off
        ProxyPass / http://127.0.0.1:10000/
        ProxyPassReverse / http://127.0.0.1:10000/
        ErrorLog ${APACHE_LOG_DIR}/webmin.<domain>-error.log
        CustomLog ${APACHE_LOG_DIR}/webmin.<domain>-access.log combined
</VirtualHost>
</pre>
</pre>



Version vom 24. Mai 2016, 21:33 Uhr

Installation

sudo apt-get install perl libnet-ssleay-perl openssl libauthen-pam-perl libpam-runtime libio-pty-perl apt-show-versions python

Unter https://sourceforge.net/projects/webadmin/files/webmin/ die aktuellste Version suchen und folgendermassen installieren:

wget http://prdownloads.sourceforge.net/webadmin/webmin_1.791_all.deb
sudo dpkg --install webmin_1.791_all.deb

Bei mir gab es Probleme mit nicht kompatiblen Abhängigkeiten, welche durch folgendes Kommando behoben wurde:

sudo apt-get install --fix-broken


sudo nano /etc/webmin/miniserv.conf
ssl=0


<VirtualHost *:80>
        ServerName webmin.<domain>
        ProxyPreserveHost On
        ProxyRequests Off
        ProxyVia Off
        ProxyPass / http://127.0.0.1:10000/
        ProxyPassReverse / http://127.0.0.1:10000/

        ErrorLog ${APACHE_LOG_DIR}/webmin.<domain>-error.log
        CustomLog ${APACHE_LOG_DIR}/webmin.<domain>-access.log combined
</VirtualHost>

Links

http://www.webmin.com/deb.html


Zurück zu Ubuntu