Server/srs19: Unterschied zwischen den Versionen

Aus Wiki StuRa HTW Dresden
Zur Navigation springen Zur Suche springen
(Die Seite wurde neu angelegt: „== Installation == === üblicher admin-foo === : <code>pkg install -y bash zsh</code> : <code>pkg install -y vim-lite nano</code> : <code>pkg install -y tmux…“)
(kein Unterschied)

Version vom 29. April 2016, 12:36 Uhr

Installation

üblicher admin-foo

pkg install -y bash zsh
pkg install -y vim-lite nano
pkg install -y tmux

Installation ownCloud

testen von PHP 7

pkg install -y php70
pkg install -y apache24 mod_php70
$EDITOR /usr/local/etc/apache24/Includes/php.conf
<FilesMatch "\.php$">
    SetHandler application/x-httpd-php
</FilesMatch>
<FilesMatch "\.phps$">
    SetHandler application/x-httpd-php-source
</FilesMatch>
sysrc apache24_enable=yes && service apache24 start