git.schokokeks.org
Repositories
Help
Report an Issue
webinterface.git
Code
Commits
Branches
Tags
Suche
Strukturansicht:
926f25d
Branches
Tags
master
ticket
webinterface.git
modules
vhosts
edit.php
CGI abschaltbar
bernd
commited
926f25d
at 2010-03-16 11:14:01
edit.php
Blame
History
Raw
<?php require_once('inc/debug.php'); require_once('inc/security.php'); require_once('vhosts.php'); require_once('certs.php'); $title = "Subdomain bearbeiten"; $section = 'vhosts_vhosts'; require_role(ROLE_SYSTEMUSER); $id = (isset($_GET['vhost']) ? (int) $_GET['vhost'] : 0); $vhost = empty_vhost(); if ($id != 0) $vhost = get_vhost_details($id); DEBUG($vhost); if ($id == 0) { output("<h3>Neue Subdomain anlegen</h3>"); $title = "Subdomain anlegen"; } else { output("<h3>Subdomain bearbeiten</h3>"); } html_header("<script type=\"text/javascript\"> function selectedDomain() { var selected; selected=document.getElementById('domain').options.selectedIndex; return document.getElementById('domain').options.item(selected).text; } function defaultDocumentRoot() { var hostname; if (document.getElementById('hostname').value == '') hostname = selectedDomain(); else hostname = document.getElementById('hostname').value + '.' + selectedDomain(); var default_docroot = hostname + '/htdocs'; useDefaultDocroot(default_docroot); } function useDefaultDocroot( default_docroot ) { var do_it = (document.getElementById('use_default_docroot').checked == true); var inputfield = document.getElementById('docroot'); inputfield.disabled = do_it; if (do_it) { document.getElementById('docroot').value = default_docroot; } } function showAppropriateLines() { if (document.getElementById('vhost_type_regular').checked == true) { document.getElementById('options_docroot').style.display = 'block'; document.getElementById('options_scriptlang').style.display = 'block'; document.getElementById('options_webapp').style.display = 'none'; } else if (document.getElementById('vhost_type_dav').checked == true) { document.getElementById('options_docroot').style.display = 'block'; document.getElementById('options_scriptlang').style.display = 'none'; document.getElementById('options_webapp').style.display = 'none'; } else if (document.getElementById('vhost_type_svn').checked == true) { document.getElementById('options_docroot').style.display = 'none'; document.getElementById('options_scriptlang').style.display = 'none'; document.getElementById('options_webapp').style.display = 'none'; } else if (document.getElementById('vhost_type_webapp').checked == true) { document.getElementById('options_docroot').style.display = 'none'; document.getElementById('options_scriptlang').style.display = 'none'; document.getElementById('options_webapp').style.display = 'block'; } } </script>"); $defaultdocroot = $vhost['domain']; if (! $vhost['domain']) $defaultdocroot = $_SESSION['userinfo']['username'].'.'.config('masterdomain'); if ($vhost['hostname']) $defaultdocroot = $vhost['hostname'].'.'.$defaultdocroot; $defaultdocroot = $defaultdocroot.'/htdocs'; $is_default_docroot = ($vhost['docroot'] == NULL) || ($vhost['homedir'].'/websites/'.$defaultdocroot == $vhost['docroot']); if ($vhost['docroot'] != '' && ! strstr($vhost['docroot'], '/websites/')) { warning("Sie verwenden einen Speicherplatz außerhalb von »~/websites/«. Diese Einstellung ist momentan nicht mehr gestattet. Ihre Einstellung wurde daher auf die Standardeinstellung zurückgesetzt. Prüfen Sie dies bitte und verschieben Sie ggf. ihre Dateien."); $is_default_docroot = True; } $docroot = ''; if ($is_default_docroot) $docroot = $defaultdocroot; else $docroot = substr($vhost['docroot'], strlen($vhost['homedir'].'/websites/')); $s = (strstr($vhost['options'], 'aliaswww') ? ' checked="checked" ' : ''); $errorlog = ($vhost['errorlog'] == 1 ? ' checked="checked" ' : ''); $vhost_type = 'regular'; if ($vhost['is_dav']) $vhost_type = 'dav'; elseif ($vhost['is_svn']) $vhost_type = 'svn'; elseif ($vhost['is_webapp']) $vhost_type = 'webapp'; $applist = list_available_webapps(); $webapp_options = ''; foreach ($applist as $app) $webapp_options .= "<option value=\"{$app['id']}\">{$app['displayname']}</option>\n"; $form = " <h4 style=\"margin-top: 2em;\">Name des VHost</h4> <div style=\"margin-left: 2em;\"><input type=\"text\" name=\"hostname\" id=\"hostname\" size=\"10\" value=\"{$vhost['hostname']}\" onkeyup=\"defaultDocumentRoot()\" onchange=\"defaultDocumentRoot()\" /><strong>.</strong>".domainselect($vhost['domain_id'], 'onchange="defaultDocumentRoot()"'); $form .= "<br /><input type=\"checkbox\" name=\"options[]\" id=\"aliaswww\" value=\"aliaswww\" {$s}/> <label for=\"aliaswww\">Auch mit <strong>www</strong> davor.</label></div> <div class=\"vhostsidebyside\"> <div class=\"vhostoptions\" id=\"options_docroot\" ".($vhost_type=='regular' || $vhost_type=='dav' ? '' : 'style="display: none;"')."> <h4>Optionen</h4> <h5>Speicherort für Dateien (»Document Root«)</h5> <div style=\"margin-left: 2em;\"> <input type=\"checkbox\" id=\"use_default_docroot\" name=\"use_default_docroot\" value=\"1\" onclick=\"defaultDocumentRoot()\" ".($is_default_docroot ? 'checked="checked" ' : '')."/> <label for=\"use_default_docroot\">Standardeinstellung benutzen</label><br /> <strong>".$vhost['homedir']."/websites/</strong> <input type=\"text\" id=\"docroot\" name=\"docroot\" size=\"30\" value=\"".$docroot."\" ".($is_default_docroot ? 'disabled="disabled" ' : '')."/> </div> </div> "; $options = array("none" => 'ausgeschaltet', "php53" => 'PHP 5.3' , "fastcgi" => "Kompatibilitätsmodus: PHP 5.2"); if ($vhost['php'] == 'mod_php') { $options['mod_php'] = 'PHP als Apache-Modul (veraltet)'; } $have_cgi = ($vhost['cgi'] == 1 ? ' checked="checked" ' : ''); $form .= " <div class=\"vhostoptions\" id=\"options_scriptlang\" ".($vhost_type=='regular' ? '' : 'style="display: none;"')."> <h5>PHP</h5> <div style=\"margin-left: 2em;\"> ".html_select("php", $options, $vhost['php'])." </div> <h5>CGI</h5> <div style=\"margin-left: 2em;\"> <input type=\"checkbox\" name=\"cgi\" id=\"cgi\" value=\"yes\" {$have_cgi}/> <label for=\"cgi\">Erlaube CGI-Nutzung</label> </div> </div> "; $form .= " <div class=\"vhostoptions\" id=\"options_webapp\" ".($vhost_type=='webapp' ? '' : 'style="display: none;"')."> <h4>Optionen</h4> <h5>Anwendung</h5> <select name=\"webapp\" id=\"webapp\" size=\"1\"> {$webapp_options} </select> <p>Wenn Sie diese Option wählen, wird die Anwendung automatisch eingerichtet. Sie erhalten dann ihre Zugangsdaten per E-Mail.</p> </div> "; $form .= " <h4>Verwendung</h4> <div style=\"margin-left: 2em;\"> <input class=\"usageoption\" onclick=\"showAppropriateLines()\" type=\"radio\" name=\"vhost_type\" id=\"vhost_type_regular\" value=\"regular\" ".(($vhost_type=='regular') ? 'checked="checked" ' : '')."/><label for=\"vhost_type_regular\"> Normal (selbst Dateien hinterlegen)</label><br /> "; if ($vhost_type=='webapp') { // Wird nur noch angezeigt wenn der Vhost schon auf webapp konfiguriert ist, ansonsten nicht. // Die User sollen den Webapp-Installer benutzen. $form .= " <input class=\"usageoption\" onclick=\"showAppropriateLines()\" type=\"radio\" name=\"vhost_type\" id=\"vhost_type_webapp\" value=\"webapp\" ".(($vhost_type=='webapp') ? 'checked="checked" ' : '')."/><label for=\"vhost_type_webapp\"> Eine vorgefertigte Applikation nutzen</label><br /> "; } $form .= " <input class=\"usageoption\" onclick=\"showAppropriateLines()\" type=\"radio\" name=\"vhost_type\" id=\"vhost_type_dav\" value=\"dav\" ".(($vhost_type=='dav') ? 'checked="checked" ' : '')."/><label for=\"vhost_type_dav\"> WebDAV</label><br /> <input class=\"usageoption\" onclick=\"showAppropriateLines()\" type=\"radio\" name=\"vhost_type\" id=\"vhost_type_svn\" value=\"svn\" ".(($vhost_type=='svn') ? 'checked="checked" ' : '')."/><label for=\"vhost_type_svn\"> Subversion-Server</label> </div> <br /> <br /> <br /> </div> <h4 style=\"clear: right; margin-top: 3em;\">Allgemeine Optionen</h4> <div style=\"margin-left: 2em;\"> <h5>SSL-Verschlüsselung</h5> <div style=\"margin-left: 2em;\"> <select name=\"ssl\" id=\"ssl\"> <option value=\"none\" ".($vhost['ssl'] == NULL ? 'selected="selected"' : '')." >SSL optional anbieten</option> <option value=\"http\" ".($vhost['ssl'] == 'http' ? 'selected="selected"' : '')." >kein SSL</option> <option value=\"https\" ".($vhost['ssl'] == 'https' ? 'selected="selected"' : '')." >nur SSL</option> <option value=\"forward\" ".($vhost['ssl'] == 'forward' ? 'selected="selected"' : '')." >Immer auf SSL umleiten</option> </select> </div> <h5>Logfiles <span class=\"warning\">*</span></h5> <div style=\"margin-left: 2em;\"> <select name=\"logtype\" id=\"logtype\"> <option value=\"none\" ".($vhost['logtype'] == NULL ? 'selected="selected"' : '')." >keine Logfiles</option> <option value=\"anonymous\" ".($vhost['logtype'] == 'anonymous' ? 'selected="selected"' : '')." >anonymisiert</option> <option value=\"default\" ".($vhost['logtype'] == 'default' ? 'selected="selected"' : '')." >vollständige Logfile</option> </select><br /> <input type=\"checkbox\" id=\"errorlog\" name=\"errorlog\" value=\"1\" ".($vhost['errorlog'] == 1 ? ' checked="checked" ' : '')." /> <label for=\"errorlog\">Fehlerprotokoll (error_log) einschalten</label><br /> <input type=\"checkbox\" id=\"stats\" name=\"stats\" value=\"1\" ".($vhost['stats'] != NULL ? ' checked="checked" ' : '')." /> <label for=\"stats\">Statistiken/Auswertungen erzeugen</label> </div> <p>Logfiles werden unter <b>/var/log/apache2/".$_SESSION['userinfo']['username']."</b> abgelegt.</p> </div> "; $ipaddrs = user_ipaddrs(); $certs = user_certs(); $form .= " <h4 style=\"margin-top: 3em;\">Erweiterte Optionen</h4> <div style=\"margin-left: 2em;\"> "; if (count($certs)) { $certselect = array(0 => 'kein Zertifikat / System-Standard benutzen'); foreach ($certs as $c) { $certselect[$c['id']] = $c['subject']; } $form .= " <h5>verwendetes SSL-Zertifikat</h5> <div style=\"margin-left: 2em;\"> ".html_select('cert', $certselect, $vhost['certid'])." </div>"; } if (count($ipaddrs)) { $ipselect = array(0 => 'System-Standard'); foreach ($ipaddrs AS $i) { $ipselect[$i] = $i; } $form .= " <h5>IP-Adresse</h5> <div style=\"margin-left: 2em;\"> ".html_select('ipv4', $ipselect, $vhost['ipv4'])." </div>"; } $checked = ($vhost['autoipv6'] == 1) ? ' checked="checked"' : ''; $form .= '<h5>IPv6</h5> <div style="margin-left: 2em;"> <input type="checkbox" name="ipv6" id="ipv6" value="yes" '.$checked.'/> <label for="ipv6">Auch über IPv6 erreichbar machen</label> (<strong>Achtung:</strong> Bitte beachten Sie die <a href="http://wiki.schokokeks.org/IPv6">Hinweise zu IPv6 im Wiki</a>.) </div>'; $form .= "</div>"; $form .= ' <p><input type="submit" value="Speichern" />    '.internal_link('vhosts', 'Abbrechen').'</p> <p class="warning"><span class="warning">*</span>Es ist im Moment fraglich, ob die Speicherung von Logfiles mit IP-Adressen auf Webservern zulässig ist. Wir weisen alle Nutzer darauf hin, dass sie selbst dafür verantwortlich sind, bei geloggten Nutzerdaten die Seitenbesucher darauf hinzuweisen. Wir empfehlen, wenn möglich, Logfiles abzuschalten oder anonymes Logging einzusetzen.</p> '; output(html_form('vhosts_edit_vhost', 'save', 'action=edit&vhost='.$vhost['id'], $form)); ?>