mirror of
https://github.com/nextcloud/all-in-one.git
synced 2024-12-29 10:10:55 +08:00
bcf36406a8
Signed-off-by: szaimen <szaimen@e.mail.de>
447 lines
36 KiB
Twig
447 lines
36 KiB
Twig
{% extends "layout.twig" %}
|
|
|
|
{% block body %}
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
|
</head>
|
|
<header>
|
|
<div class="">
|
|
<div class="logo"></div>
|
|
</div>
|
|
<form method="POST" action="/api/auth/logout">
|
|
<input type="hidden" name="{{csrf.keys.name}}" value="{{csrf.name}}">
|
|
<input type="hidden" name="{{csrf.keys.value}}" value="{{csrf.value}}">
|
|
<input class="button" type="submit" value="Log out" />
|
|
</form>
|
|
</header>
|
|
|
|
<div class="content">
|
|
<h1>Nextcloud AIO Beta v0.9.1</h1>
|
|
This is beta software and not production ready.<br><br>
|
|
|
|
{% set isAnyRunning = false %}
|
|
{% set isAnyRestarting = false %}
|
|
{% set isWatchtowerRunning = false %}
|
|
{% set isRestoreRunning = false %}
|
|
{% set isBackupOrRestoreRunning = false %}
|
|
{% set isApacheStarting = false %}
|
|
|
|
{% if is_backup_container_running == true %}
|
|
{% if borg_backup_mode == 'restore' %}
|
|
{% set isRestoreRunning = true %}
|
|
{% endif %}
|
|
{% if borg_backup_mode == 'backup' or borg_backup_mode == 'restore' %}
|
|
{% set isBackupOrRestoreRunning = true %}
|
|
{% endif %}
|
|
{% endif %}
|
|
|
|
{% for container in containers %}
|
|
{% if container.GetIdentifier() not in ['nextcloud-aio-domaincheck', 'nextcloud-aio-borgbackup', 'nextcloud-aio-watchtower'] and class(container.GetRunningState()) == 'AIO\\Container\\State\\RunningState' %}
|
|
{% set isAnyRunning = true %}
|
|
{% endif %}
|
|
{% if container.GetIdentifier() not in ['nextcloud-aio-domaincheck', 'nextcloud-aio-borgbackup', 'nextcloud-aio-watchtower'] and class(container.GetRestartingState()) == 'AIO\\Container\\State\\RestartingState' %}
|
|
{% set isAnyRestarting = true %}
|
|
{% endif %}
|
|
{% if container.GetIdentifier() == 'nextcloud-aio-watchtower' and class(container.GetRunningState()) == 'AIO\\Container\\State\\RunningState' %}
|
|
{% set isWatchtowerRunning = true %}
|
|
{% endif %}
|
|
{% if container.GetIdentifier() == 'nextcloud-aio-apache' and class(container.GetStartingState()) == 'AIO\\Container\\State\\StartingState' %}
|
|
{% set isApacheStarting = true %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
|
|
{% if is_daily_backup_running == true %}
|
|
<span class="status running"></span> Daily backup currently running. (<a href="/api/docker/logs?id=nextcloud-aio-mastercontainer">Logs</a>)<br /><br />
|
|
It will update all containers and all apps if the backup is successful.<br /><br />
|
|
{% if is_mastercontainer_update_available == true %}
|
|
Since the mastercontainer gets updated, it will restart the container which will make it unavailable for a moment. (<a href="/api/docker/logs?id=nextcloud-aio-watchtower">Logs</a>)<br /><br />
|
|
{% endif %}
|
|
{% if has_update_available == false %}
|
|
The whole process should not take more than a few minutes.<br /><br />
|
|
{% else %}
|
|
The whole process can take a while because your containers get updated.<br /><br />
|
|
{% endif %}
|
|
<a href="" class="button reload">Reload ↻</a><br/>
|
|
{% elseif isWatchtowerRunning == true %}
|
|
<span class="status running"></span> Mastercontainer update currently running. It will restart the mastercontainer soon which will make it unavailable for a moment. Please wait until that's done. (<a href="/api/docker/logs?id=nextcloud-aio-watchtower">Logs</a>)<br /><br />
|
|
<a href="" class="button reload">Reload ↻</a><br/>
|
|
{% else %}
|
|
{% if is_backup_container_running == false and domain == "" %}
|
|
{% if is_mastercontainer_update_available == true %}
|
|
<h2>Mastercontainer update</h2>
|
|
⚠ A mastercontainer update is available. Please click on the button below to update it. Afterwards, you will be able to proceed with the setup.<br><br>
|
|
<form method="POST" action="/api/docker/watchtower" class="xhr">
|
|
<input type="hidden" name="{{csrf.keys.name}}" value="{{csrf.name}}">
|
|
<input type="hidden" name="{{csrf.keys.value}}" value="{{csrf.value}}">
|
|
<input class="button" type="submit" value="Update mastercontainer" />
|
|
</form>
|
|
{% else %}
|
|
{% if borg_backup_host_location == '' and borg_restore_password == '' %}
|
|
Nextcloud AIO stands for Nextcloud All In One and provides easy deployment and maintenance with most features included in this one Nextcloud instance.<br><br>
|
|
<h2>New AIO instance</h2>
|
|
Please type in the domain that will be used for Nextcloud if you want to create a new instance:<br><br />
|
|
<form method="POST" action="/api/configuration" class="xhr">
|
|
<input type="text" name="domain" value="{{ domain }}" placeholder="nextcloud.yourdomain.com"/>
|
|
<input type="hidden" name="{{csrf.keys.name}}" value="{{csrf.name}}">
|
|
<input type="hidden" name="{{csrf.keys.value}}" value="{{csrf.value}}">
|
|
<input class="button" type="submit" value="Submit" />
|
|
</form>
|
|
Make sure that this server is reachable on Port 443 and you've correctly set up the DNS config for the domain that you enter. <br><br>
|
|
If you have a dynamic IP-address, you can use e.g. <a href="https://ddclient.net/">DDclient</a> with a compatible domain provider for DNS updates. <br /><br/>
|
|
|
|
<h2>Restore AIO instance from backup</h2>
|
|
You can alternatively restore an AIO instance from backup.<br><br>
|
|
{% endif %}
|
|
|
|
{% if borg_backup_host_location != '' and borg_restore_password != '' %}
|
|
{% if borg_backup_mode in ['test', 'check'] %}
|
|
{% if backup_exit_code > 0 %}
|
|
<span class="status error"></span> Last {{ borg_backup_mode }} failed! (<a href="/api/docker/logs?id=nextcloud-aio-borgbackup">Logs</a>)<br /><br />
|
|
{% if borg_backup_mode == 'test' %}
|
|
Please adjust the path and/or password in order to make it work! After changing and submitting the values, click on 'Test path and password' button at the bottom of this page to verify and test the new settings!<br><br>
|
|
{% elseif borg_backup_mode == 'check' %}
|
|
The backup archive seems to be corrupt. Please try to use a different intact backup archive or try to fix it by following <a href="https://borgbackup.readthedocs.io/en/stable/faq.html?highlight=repair#:~:text=repairing%20a%20damaged%20repository"><b>this documentation</b></a>
|
|
{% endif %}
|
|
{% elseif backup_exit_code == 0 %}
|
|
<span class="status success"></span> Last {{ borg_backup_mode }} successful! (<a href="/api/docker/logs?id=nextcloud-aio-borgbackup">Logs</a>)<br /><br />
|
|
{% if borg_backup_mode == 'test' %}
|
|
Feel free to check the integrity of the backup archive below before starting the restore process in order to make double-sure that the restore will work. This can take a long time though depending on the size of the backup archive and is thus not required.<br><br>
|
|
<form method="POST" action="/api/docker/backup-check" class="xhr">
|
|
<input type="hidden" name="{{csrf.keys.name}}" value="{{csrf.name}}">
|
|
<input type="hidden" name="{{csrf.keys.value}}" value="{{csrf.value}}">
|
|
<input class="button" type="submit" value="Check backup integrity"/><br/>
|
|
</form>
|
|
{% endif %}
|
|
Choose the backup that you want to restore and click on the button below to restore the selected backup. This will restore the whole AIO instance from backup. Please not that the current AIO password will be kept and the AIO password not restored from backup!<br><br>
|
|
<form method="POST" action="/api/docker/restore" class="xhr" id="restore_selection">
|
|
<input type="hidden" name="{{csrf.keys.name}}" value="{{csrf.name}}">
|
|
<input type="hidden" name="{{csrf.keys.value}}" value="{{csrf.value}}">
|
|
<select id="selected_restore_time" name="selected_restore_time" form="restore_selection">
|
|
{% for restore_time in backup_times %}
|
|
<option value="{{ restore_time }}">{{ restore_time }}</option>
|
|
{% endfor %}
|
|
</select>
|
|
<input class="button" type="submit" value="Restore selected backup"/>
|
|
</form>
|
|
{% endif %}
|
|
{% elseif borg_backup_mode == 'restore' %}
|
|
{% if backup_exit_code > 0 %}
|
|
<span class="status error"></span> Last restore failed! (<a href="/api/docker/logs?id=nextcloud-aio-borgbackup">Logs</a>)<br /><br />
|
|
Somehow the restore failed which is unexpected! Please adjust the path and password, test it and try to restore again!
|
|
{% endif %}
|
|
{% endif %}
|
|
{% endif %}
|
|
|
|
{% if borg_backup_host_location == '' or borg_restore_password == '' or borg_backup_mode not in ['test', 'check', ''] or backup_exit_code > 0 %}
|
|
Please enter the location of the backup archive on your host and the password of the backup archive below:<br><br>
|
|
<form method="POST" action="/api/configuration" class="xhr">
|
|
<input type="text" name="borg_restore_host_location" value="{{borg_backup_host_location}}" placeholder="/mnt/backup"/>
|
|
<input type="text" name="borg_restore_password" value="{{borg_restore_password}}" placeholder="enter the borg password"/>
|
|
<input type="hidden" name="{{csrf.keys.name}}" value="{{csrf.name}}">
|
|
<input type="hidden" name="{{csrf.keys.value}}" value="{{csrf.value}}">
|
|
<input class="button" type="submit" value="Submit" />
|
|
</form>
|
|
The folder path that you enter may start with <b>/mnt/</b>, <b>/media/</b> or <b>/host_mnt/</b> or may be equal to <b>/var/backups</b>.<br><br>So e.g. <b>/mnt/backup</b> on Linux and macOS or <b>/host_mnt/c/backup/directory</b> on Windows. (This Windows example would be equivalent to 'C:\backup\directory' on the Windows host. So you need to translate the path that you want to use into the correct format.)<br><br>
|
|
⚠ Note that the backup archive must be located in a subfolder of the folder that you enter here and the subfolder which contains the archive must be named 'borg'. Otherwise will the backup container not find the backup archive!<br><br>
|
|
{% endif %}
|
|
{% if borg_backup_host_location != '' and borg_restore_password != '' %}
|
|
{% if borg_backup_mode not in ['test', 'check'] or backup_exit_code != 0 %}
|
|
<b>Everything set!</b> Click on the button below to test the path and password:<br/><br/>
|
|
<form method="POST" action="/api/docker/backup-test" class="xhr">
|
|
<input type="hidden" name="{{csrf.keys.name}}" value="{{csrf.name}}">
|
|
<input type="hidden" name="{{csrf.keys.value}}" value="{{csrf.value}}">
|
|
<input class="button" type="submit" value="Test path and password"/><br/>
|
|
</form>
|
|
{% endif %}
|
|
{% endif %}
|
|
{% endif %}
|
|
{% endif %}
|
|
|
|
{% if domain != "" and was_start_button_clicked == true %}
|
|
You are running the <b>{{ current_channel }}</b> channel. (<a href="/api/docker/logs?id=nextcloud-aio-mastercontainer">Logs</a>)<br><br>
|
|
{% endif %}
|
|
|
|
{% if is_backup_container_running == true %}
|
|
<span class="status running"></span> Backup container is currently running. (<a href="/api/docker/logs?id=nextcloud-aio-borgbackup">Logs</a>)<br /><br />
|
|
<a href="" class="button reload">Reload ↻</a><br/><br>
|
|
{% endif %}
|
|
|
|
{% if domain != "" %}
|
|
{% if isAnyRunning == true %}
|
|
{% if isApacheStarting != true %}
|
|
<details>
|
|
<summary>Click here to reveal the initial Nextcloud credentials</summary><br />
|
|
Initial Nextcloud username: <b>admin</b><br />
|
|
Initial Nextcloud password: <b>{{ nextcloud_password }}</b>
|
|
</details><br /><br />
|
|
<a href="https://{{ domain }}" class="button" target="_blank" rel="noopener">Open your Nextcloud ↗</a><br/>
|
|
{% else %}
|
|
{% if isAnyRestarting == false %}
|
|
<span class="status running"></span> Containers are currently starting.<br /><br />
|
|
<a href="" class="button reload">Reload ↻</a><br/><br>
|
|
{% else %}
|
|
It seems like at least one container is currently restarting which means it is not able to start correctly.<br><br>
|
|
To break out this endless loop, you can stop the containers below and investigate the issue by having a look at the container logs before starting them again.<br><br>
|
|
<form method="POST" action="/api/docker/stop" class="xhr">
|
|
<input type="hidden" name="{{csrf.keys.name}}" value="{{csrf.name}}">
|
|
<input type="hidden" name="{{csrf.keys.value}}" value="{{csrf.value}}">
|
|
<input class="button" type="submit" value="Stop containers" />
|
|
</form>
|
|
{% endif %}
|
|
{% endif %}
|
|
{% endif %}
|
|
|
|
{% if was_start_button_clicked == true %}
|
|
<h2>Containers</h2>
|
|
<ul>
|
|
{# @var containers \AIO\Container\Container[] #}
|
|
{% for container in containers %}
|
|
{% if container.GetIdentifier() not in ['nextcloud-aio-borgbackup', 'nextcloud-aio-watchtower', 'nextcloud-aio-domaincheck'] %}
|
|
<li>
|
|
{% if class(container.GetStartingState()) == 'AIO\\Container\\State\\StartingState' %}
|
|
<span class="status running"></span>
|
|
<span>{{container.GetDisplayName()}} (<a href="/api/docker/logs?id={{ container.GetIdentifier() }}">Starting</a>)</span>
|
|
{% elseif class(container.GetRunningState()) == 'AIO\\Container\\State\\RunningState' %}
|
|
<span class="status success"></span>
|
|
<span>{{container.GetDisplayName()}} (<a href="/api/docker/logs?id={{ container.GetIdentifier() }}">Running</a>)</span>
|
|
{% else %}
|
|
<span class="status error"></span>
|
|
<span>{{container.GetDisplayName()}} (<a href="/api/docker/logs?id={{ container.GetIdentifier() }}">Stopped</a>)</span>
|
|
{% endif %}
|
|
</li>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
{% if has_update_available == true %}
|
|
{% if is_mastercontainer_update_available == false %}
|
|
⚠ Container updates are available. Click on 'Stop Containers' and 'Start Containers' to update them. You should consider creating a backup first.<br><br>
|
|
{% endif %}
|
|
{% else %}
|
|
{% if is_mastercontainer_update_available == false %}
|
|
Your containers are up-to-date.<br><br>
|
|
{% endif %}
|
|
{% endif %}
|
|
{% endif %}
|
|
|
|
{% if isAnyRunning == true %}
|
|
{% if isApacheStarting != true %}
|
|
{% if is_mastercontainer_update_available == true %}
|
|
⚠ A mastercontainer update is available. Please click on the button below to stop your containers in order to be able to update the mastercontainer.<br /><br />
|
|
{% if current_channel starts with 'latest' %}
|
|
You can find the changelog <a href="https://github.com/nextcloud/all-in-one/releases/latest"><b>here</b></a><br><br>
|
|
{% elseif current_channel starts with 'beta' %}
|
|
You can find the changelog <a href="https://github.com/nextcloud/all-in-one/releases"><b>here</b></a><br><br>
|
|
{% elseif current_channel starts with 'develop' %}
|
|
You can find all changes <a href="https://github.com/nextcloud-releases/all-in-one/commits/main"><b>here</b></a><br><br>
|
|
{% endif %}
|
|
{% endif %}
|
|
<form method="POST" action="/api/docker/stop" class="xhr">
|
|
<input type="hidden" name="{{csrf.keys.name}}" value="{{csrf.name}}">
|
|
<input type="hidden" name="{{csrf.keys.value}}" value="{{csrf.value}}">
|
|
<input class="button" type="submit" value="Stop containers" />
|
|
</form>
|
|
{% endif %}
|
|
{% else %}
|
|
{% if isRestoreRunning == true %}
|
|
Restore currently running. Cannot start the containers until that's done.<br /><br />
|
|
{% elseif has_update_available == true and isBackupOrRestoreRunning == true %}
|
|
Restore or Backup currently running and container update available. Cannot start the containers until that's done.<br /><br />
|
|
{% else %}
|
|
{% if was_start_button_clicked == false %}
|
|
Clicking on the button below will download all docker containers and start them. This can take a lot of time depending on your internect connection. Since the overall size is a few GB, this will take around 5-10 min or more. So be aware and patient!<br><br>
|
|
{% endif %}
|
|
{% if is_mastercontainer_update_available == true %}
|
|
⚠ A mastercontainer update is available. Please click on the button below to update it.<br><br>
|
|
<form method="POST" action="/api/docker/watchtower" class="xhr">
|
|
<input type="hidden" name="{{csrf.keys.name}}" value="{{csrf.name}}">
|
|
<input type="hidden" name="{{csrf.keys.value}}" value="{{csrf.value}}">
|
|
<input class="button" type="submit" value="Update mastercontainer" />
|
|
</form>
|
|
{% else %}
|
|
{% if was_start_button_clicked == false or has_update_available == false %}
|
|
<form method="POST" action="/api/docker/start" class="xhr">
|
|
<input type="hidden" name="{{csrf.keys.name}}" value="{{csrf.name}}">
|
|
<input type="hidden" name="{{csrf.keys.value}}" value="{{csrf.value}}">
|
|
<input class="button" type="submit" value="Start containers" />
|
|
</form>
|
|
{% else %}
|
|
<form method="POST" action="/api/docker/start" class="xhr">
|
|
<input type="hidden" name="{{csrf.keys.name}}" value="{{csrf.name}}">
|
|
<input type="hidden" name="{{csrf.keys.value}}" value="{{csrf.value}}">
|
|
<input class="button " type="submit" value="Start and update containers" onclick="return confirm('Start and update containers? You should consider creating a backup first.')" />
|
|
</form>
|
|
{% endif %}
|
|
{% endif %}
|
|
{% endif %}
|
|
{% endif %}
|
|
|
|
{% if was_start_button_clicked == true %}
|
|
|
|
{% if is_backup_container_running == false and borg_backup_host_location == "" and isApacheStarting != true %}
|
|
<h2>Backup and restore</h2>
|
|
Please type in the directory where backups will get created on the host system:<br><br>
|
|
<form method="POST" action="/api/configuration" class="xhr">
|
|
<input type="text" name="borg_backup_host_location" placeholder="/mnt/backup"/>
|
|
<input type="hidden" name="{{csrf.keys.name}}" value="{{csrf.name}}">
|
|
<input type="hidden" name="{{csrf.keys.value}}" value="{{csrf.value}}">
|
|
<input class="button" type="submit" value="Submit" />
|
|
</form>
|
|
The folder path that you enter must start with <b>/mnt/</b>, <b>/media/</b> or <b>/host_mnt/</b> or be equal to <b>/var/backups</b>.<br><br>So e.g. <b>/mnt/backup</b> on Linux and macOS or <b>/host_mnt/c/backup/directory</b> on Windows. (This Windows example would be equivalent to 'C:\backup\directory' on the Windows host. So you need to translate the path that you want to use into the correct format.)
|
|
{% endif %}
|
|
|
|
{% if borg_backup_host_location != "" %}
|
|
{% if is_backup_container_running == false %}
|
|
<h2>Backup and restore</h2>
|
|
{% if backup_exit_code > 0 %}
|
|
<span class="status error"></span> Last {{ borg_backup_mode }} failed! (<a href="/api/docker/logs?id=nextcloud-aio-borgbackup">Logs</a>)<br /><br />
|
|
{% elseif backup_exit_code == 0 %}
|
|
{% if borg_backup_mode == "backup" %}
|
|
<span class="status success"></span> Last {{ borg_backup_mode }} successful on {{ last_backup_time }}! (<a href="/api/docker/logs?id=nextcloud-aio-borgbackup">Logs</a>)<br /><br />
|
|
{% else %}
|
|
<span class="status success"></span> Last {{ borg_backup_mode }} successful! (<a href="/api/docker/logs?id=nextcloud-aio-borgbackup">Logs</a>)<br /><br />
|
|
{% endif %}
|
|
{% endif %}
|
|
{% endif %}
|
|
|
|
{% if is_backup_container_running == false and isApacheStarting == false %}
|
|
{% if has_backup_run_once == true %}
|
|
<details>
|
|
<summary>Click here to reveal all backup options</summary><br />
|
|
{% endif %}
|
|
<h3>Backup information</h3>
|
|
This is your encryption password for backups: <b>{{ borgbackup_password }}</b><br /><br/>
|
|
Please save it at a safe place since you won't be able to restore from backup if you loose this password! <br /><br/>
|
|
Backed up will get all important data of your Nextcloud AIO instance like the database, your files and configuration files of the mastercontainer and else. <br /><br/>
|
|
The backup itself will use a tool that is called <a href="https://github.com/borgbackup/borg#what-is-borgbackup"><b>BorgBackup</b><a/> which is a well-known server backup tool that efficiently backs up your files and encrypts them on the fly. <br /><br/>
|
|
Backups get created in the following directory on the host: <b>{{ borg_backup_host_location }}/borg</b> <br /><br/>
|
|
Be aware that this solution does not back up files and folders that are mounted into Nextcloud using the external storage app.
|
|
|
|
{% if isApacheStarting != true %}
|
|
<h3>Backup creation</h3>
|
|
Clicking on the button below will create a backup.<br><br/>
|
|
<form method="POST" action="/api/docker/backup" class="xhr">
|
|
<input type="hidden" name="{{csrf.keys.name}}" value="{{csrf.name}}">
|
|
<input type="hidden" name="{{csrf.keys.value}}" value="{{csrf.value}}">
|
|
<input class="button" type="submit" value="Create backup" onclick="return confirm('Create backup? Are you sure that you want to create a backup? This will stop all running containers and create the backup.')" />
|
|
</form>
|
|
|
|
{% if has_backup_run_once == true %}
|
|
<h3>Backup check</h3>
|
|
Click on the button below to perform a backup integrity check. This is an option that verifies that your backup is intact but it should't be needed in most situtations.<br><br/>
|
|
<form method="POST" action="/api/docker/backup-check" class="xhr">
|
|
<input type="hidden" name="{{csrf.keys.name}}" value="{{csrf.name}}">
|
|
<input type="hidden" name="{{csrf.keys.value}}" value="{{csrf.value}}">
|
|
<input class="button" type="submit" value="Check backup integrity" onclick="return confirm('Check backup integrity? Are you sure that you want to check the backup? This can take a long time depending on the size of your backup.')" /><br/>
|
|
</form>
|
|
|
|
<h3>Backup restore</h3>
|
|
Choose the backup that you want to restore and click on the button below to restore the selected backup. This will overwrite all your files with the state of the backup so you should consider creating a backup first. It also makes sense to run an integrity check before restoring your files but is not mandatory since it shouldn't be needed in most situations.<br><br>
|
|
<form method="POST" action="/api/docker/restore" class="xhr" id="restore_selection">
|
|
<input type="hidden" name="{{csrf.keys.name}}" value="{{csrf.name}}">
|
|
<input type="hidden" name="{{csrf.keys.value}}" value="{{csrf.value}}">
|
|
<select id="selected_restore_time" name="selected_restore_time" form="restore_selection">
|
|
{% for restore_time in backup_times %}
|
|
<option value="{{ restore_time }}">{{ restore_time }}</option>
|
|
{% endfor %}
|
|
</select>
|
|
<input class="button" type="submit" value="Restore selected backup" onclick="return confirm('Restore the selected backup? Are you sure that you want to restore the selected backup? This will stop all running containers and restore the selected backup. It is recommended to create a backup first. You might also want to check the backup integrity.')" />
|
|
</form>
|
|
|
|
<h3>Daily backup creation</h3>
|
|
{% if daily_backup_time == "" %}
|
|
By entering a time below, you can enable daily backups. It will create them at the entered time in 24h format. E.g. <b>04:00</b> will create backups at 4 am CT and <b>16:00</b> at 4 pm CT.<br><br/>
|
|
<form method="POST" action="/api/configuration" class="xhr">
|
|
<input type="text" name="daily_backup_time" value="04:00" placeholder="04:00"/>
|
|
<input type="hidden" name="{{csrf.keys.name}}" value="{{csrf.name}}">
|
|
<input type="hidden" name="{{csrf.keys.value}}" value="{{csrf.value}}">
|
|
<input class="button" type="submit" value="Submit" />
|
|
</form>
|
|
This option will also automatically update your containers and apps and will send a notification about the result of the backup.<br><br/>
|
|
{% else %}
|
|
Daily backups will be created at <b>{{ daily_backup_time }} CT</b> which includes a notification about the result of the backup and automatic updates of your containers and apps. You can disable this option again by clicking on the button below.<br><br/>
|
|
<form method="POST" action="/api/configuration" class="xhr">
|
|
<input type="hidden" name="delete_daily_backup_time" value="yes"/>
|
|
<input type="hidden" name="{{csrf.keys.name}}" value="{{csrf.name}}">
|
|
<input type="hidden" name="{{csrf.keys.value}}" value="{{csrf.value}}">
|
|
<input class="button" type="submit" value="Disable daily backups" />
|
|
</form>
|
|
{% endif %}
|
|
{% endif %}
|
|
{% endif %}
|
|
{% if has_backup_run_once == false %}
|
|
<br /><br />
|
|
{% else %}
|
|
</details><br /><br />
|
|
{% endif %}
|
|
{% endif %}
|
|
{% endif %}
|
|
|
|
{% if is_backup_container_running == false %}
|
|
{% if isApacheStarting == false %}
|
|
<h2>AIO password change</h2>
|
|
You can change your AIO password below:<br><br />
|
|
<form method="POST" action="/api/configuration" class="xhr">
|
|
<input type="text" autocomplete="current-password" name="current-master-password" placeholder="Your current AIO password"/>
|
|
<input type="text" autocomplete="new-password" name="new-master-password" placeholder="Your new AIO password"/>
|
|
<input type="hidden" name="{{csrf.keys.name}}" value="{{csrf.name}}">
|
|
<input type="hidden" name="{{csrf.keys.value}}" value="{{csrf.value}}">
|
|
<input class="button" type="submit" value="Submit" />
|
|
</form>
|
|
The new password needs to be at least 24 characters long. Allowed characters are the <a href="https://en.wikipedia.org/wiki/Latin_alphabet#/media/File:Abecedarium.png"><b>latin characters</b></a> <b>a-z</b>, <b>A-Z</b>, <b>0-9</b> and <b>spaces</b>.
|
|
{% endif %}
|
|
{% endif %}
|
|
{% endif %}
|
|
{% if is_backup_container_running == false %}
|
|
<h2>Optional addons</h2>
|
|
In this section you can find optional addons.<br>
|
|
You can enable or disable them when your containers are stopped.<br><br>
|
|
<form id="options-form" method="POST" action="/api/configuration" class="xhr">
|
|
<input type="hidden" name="{{csrf.keys.name}}" value="{{csrf.name}}">
|
|
<input type="hidden" name="{{csrf.keys.value}}" value="{{csrf.value}}">
|
|
<input type="hidden" name="options-form" value="options-form">
|
|
{% if is_clamav_enabled == true %}
|
|
<input type="checkbox" id="clamav" name="clamav" checked="checked"><label for="clamav">ClamAV (only supported on x64, needs ~1GB additional RAM)</label><br>
|
|
{% else %}
|
|
<input type="checkbox" id="clamav" name="clamav"><label for="clamav">ClamAV (only supported on x64, needs ~1GB additional RAM)</label><br>
|
|
{% endif %}
|
|
{% if is_collabora_enabled == true %}
|
|
<input type="checkbox" id="collabora" name="collabora" checked="checked"><label for="collabora">Collabora</label><br>
|
|
{% else %}
|
|
<input type="checkbox" id="collabora" name="collabora"><label for="collabora">Collabora</label><br>
|
|
{% endif %}
|
|
{% if is_talk_enabled == true %}
|
|
<input type="checkbox" id="talk" name="talk" checked="checked"><label for="talk">Nextcloud Talk (needs ports 3478/TCP and 3478/UDP open in your firewall/router)</label><br><br>
|
|
{% else %}
|
|
<input type="checkbox" id="talk" name="talk"><label for="talk">Nextcloud Talk (needs ports 3478/TCP and 3478/UDP open in your firewall/router)</label><br><br>
|
|
{% endif %}
|
|
{% if is_onlyoffice_enabled == true %}
|
|
<input type="checkbox" id="onlyoffice" name="onlyoffice" checked="checked"><label for="onlyoffice">OnlyOffice (only supported on x64)</label><br>
|
|
{% else %}
|
|
<input type="checkbox" id="onlyoffice" name="onlyoffice"><label for="onlyoffice">OnlyOffice (only supported on x64)</label><br>
|
|
{% endif %}
|
|
<input id="options-form-submit" class="button" type="submit" value="Save changes" />
|
|
</form>
|
|
{% if isAnyRunning == true or is_x64_platform == false %}
|
|
<script type="text/javascript" src="disable-clamav.js"></script>
|
|
<script type="text/javascript" src="disable-onlyoffice.js"></script>
|
|
{% endif %}
|
|
{% if isAnyRunning == true %}
|
|
<script type="text/javascript" src="disable-talk.js"></script>
|
|
<script type="text/javascript" src="disable-collabora.js"></script>
|
|
{% endif %}
|
|
{% endif %}
|
|
{% endif %}
|
|
{% endif %}
|
|
|
|
{% if isApacheStarting == true or is_backup_container_running == true or isWatchtowerRunning == true or is_daily_backup_running == true %}
|
|
<script type="text/javascript" src="automatic_reload.js"></script>
|
|
{% else %}
|
|
<script type="text/javascript" src="before-unload.js"></script>
|
|
{% endif %}
|
|
|
|
</div>
|
|
<div id="overlay">
|
|
<div class="loader"></div>
|
|
</div>
|
|
{% endblock %}
|