servnest/public/ht/https-domain.php

99 lines
2.6 KiB
PHP
Raw Normal View History

2022-04-23 01:57:43 +02:00
<?php require "../../common/top.php"; ?>
2021-03-02 22:56:38 +01:00
2021-02-16 19:20:19 +01:00
<p>
2022-04-18 16:05:00 +02:00
Ajouter un domaine sur un dossier de site<br>
Le domaine doit pointer vers ces adresses IP :
<br>IPv4 : <code><?= CONF['ht']['ipv4_address'] ?></code>
<br>IPv6 : <code><?= CONF['ht']['ipv6_address'] ?></code>
2021-02-16 19:20:19 +01:00
</p>
<form method="post">
2022-04-18 16:05:00 +02:00
<label for="domain">Domaine sur lequel répondre</label><br>
<input required="" placeholder="site.<?= CONF['common']['domain_example'] ?>" id="domain" name="domain" type="text"><br>
2022-04-18 16:05:00 +02:00
<label for="dir">Dossier ciblé</label><br>
<select required="" name="dir" id="dir">
<option value="" disabled="" selected="">---</option>
<?php
2022-05-06 15:14:46 +02:00
if (isset($_SESSION['username'])) {
$fsDirs = listFsDirs($_SESSION['username']);
$dbUsedDirs = listDbDirs($_SESSION['username'], "dns", "http");
$i = 0;
$j = 0;
$alreadyEnabledDirs = NULL;
$notYetEnabledDirs = NULL;
if ($fsDirs) {
foreach ($fsDirs as $fsDir) {
if ($dbUsedDirs AND in_array($fsDir, $dbUsedDirs)) {
$alreadyEnabledDirs[$i] = $fsDir;
$i++;
} else {
$notYetEnabledDirs[$j] = $fsDir;
$j++;
}
2022-04-18 16:05:00 +02:00
}
2022-05-06 15:14:46 +02:00
if (!is_null($notYetEnabledDirs)) {
foreach ($notYetEnabledDirs as $dir) {
echo "<option value='" . $dir . "'>" . $dir . "</option>";
}
2022-04-18 16:05:00 +02:00
}
2022-05-06 15:14:46 +02:00
if (!is_null($alreadyEnabledDirs)) {
foreach ($alreadyEnabledDirs as $dir) {
echo "<option disabled='' value='" . $dir . "'>" . $dir . "</option>";
}
2022-04-18 16:05:00 +02:00
}
}
}
?>
</select>
<br>
<input value="Valider" type="submit">
2021-02-16 19:20:19 +01:00
</form>
<?php
if (isset($_POST['domain']) AND isset($_POST['dir']) AND isset($_SESSION['username'])) {
2022-04-18 16:05:00 +02:00
antiCSRF();
2021-08-05 14:04:33 +02:00
2022-04-18 16:05:00 +02:00
checkDomainFormat($_POST['domain']);
2021-02-16 19:20:19 +01:00
2022-04-18 16:05:00 +02:00
if (!in_array($_POST['dir'], $notYetEnabledDirs))
userError("Wrong value for <code>dir</code>.");
2021-02-16 19:20:19 +01:00
2022-04-18 16:05:00 +02:00
addSite($_SESSION['username'], $_POST['dir'], $_POST['domain'], "dns", "http");
2021-02-16 19:20:19 +01:00
2022-05-03 15:27:46 +02:00
$nginxConf = 'server {
listen [::1]:' . CONF['ht']['https_port'] . ' ssl http2;
listen 127.0.0.1:' . CONF['ht']['https_port'] . ' ssl http2;
2022-05-03 15:27:46 +02:00
server_name ' . $_POST['domain'] . ';
root ' . CONF['ht']['ht_path'] . '/' . $_SESSION['username'] . '/' . $_POST['dir'] . ';
2022-05-03 15:27:46 +02:00
ssl_certificate /etc/ssl/certs/niver.crt;
ssl_certificate_key /etc/ssl/private/niver.key;
include inc/tls.conf;
location / {
try_files $uri $uri.html $uri/ =404;
}
}
';
file_put_contents(CONF['ht']['nginx_config_path'] . "/" . $_POST['domain'] . ".conf", $nginxConf);
2021-03-04 01:02:38 +01:00
2022-04-18 16:05:00 +02:00
// Reload Nginx
exec(CONF['ht']['sudo_path'] . " " . CONF['ht']['systemctl_path'] . " reload nginx");
2021-03-04 01:02:38 +01:00
2022-04-18 16:05:00 +02:00
echo "Accès HTTP par domaine ajouté sur ce dossier !";
2021-02-16 19:20:19 +01:00
}
?>
2022-04-23 01:57:43 +02:00
<?php require "../../common/bottom.php"; ?>