mirror of
https://github.com/haiwen/seafile-admin-docs.git
synced 2025-12-26 02:32:50 +00:00
Deployed ae711ac7 to 13.0 with MkDocs 1.6.1 and mike 2.1.3
This commit is contained in:
parent
756c41c889
commit
774def0051
|
|
@ -5016,6 +5016,10 @@
|
|||
<ul>
|
||||
<li><code>NOTIFICATION_SERVER_URL</code>: The <a href="../../extension/notification-server/">notification server</a> url, leave blank to disable it (default).</li>
|
||||
</ul>
|
||||
<div class="admonition note">
|
||||
<p class="admonition-title">In Seafile cluster or standalone-deployment notification server</p>
|
||||
<p>In addition to <code>NOTIFICATION_SERVER_URL</code>, you also need to specify <code>INNER_NOTIFICATION_SERVER_URL=$NOTIFICATION_SERVER_URL</code>, which will be used for the connection between Seafile server and notification server.</p>
|
||||
</div>
|
||||
<h2 id="cluster-init-configuration">Cluster init configuration<a class="headerlink" href="#cluster-init-configuration" title="Permanent link">¶</a></h2>
|
||||
<ul>
|
||||
<li><code>CLUSTER_INIT_MODE</code>: (only valid in pro edition at deploying first time). Cluster initialization mode, in which the necessary configuration files for the service to run will be generated (but <strong>the service will not be started</strong>). If the configuration file already exists, no operation will be performed. The default value is <code>true</code>. When the configuration file is generated, <strong><em>be sure to set this item to <code>false</code></em></strong>.</li>
|
||||
|
|
|
|||
|
|
@ -4728,21 +4728,29 @@
|
|||
<div class="tabbed-set tabbed-alternate" data-tabs="1:2"><input checked="checked" id="__tabbed_1_1" name="__tabbed_1" type="radio" /><input id="__tabbed_1_2" name="__tabbed_1" type="radio" /><div class="tabbed-labels"><label for="__tabbed_1_1">Deploy with Seafile</label><label for="__tabbed_1_2">Standalone deployment</label></div>
|
||||
<div class="tabbed-content">
|
||||
<div class="tabbed-block">
|
||||
<div class="highlight"><pre><span></span><code><span class="nv">NOTIFICATION_SERVER_URL</span><span class="o">=</span>https://seafile.example.com/notification
|
||||
<div class="highlight"><pre><span></span><code><span class="nv">NOTIFICATION_SERVER_URL</span><span class="o">=</span><span class="nv">$SEAFILE_SERVER_PROTOCOL</span>://<span class="nv">$SEAFILE_SERVER_HOSTNAME</span>/notification
|
||||
</code></pre></div>
|
||||
</div>
|
||||
<div class="tabbed-block">
|
||||
<div class="highlight"><pre><span></span><code><span class="nv">NOTIFICATION_SERVER_URL</span><span class="o">=</span><your<span class="w"> </span>notification<span class="w"> </span>server<span class="w"> </span>URL>
|
||||
<span class="nv">INNER_NOTIFICATION_SERVER_URL</span><span class="o">=</span><span class="nv">$NOTIFICATION_SERVER_URL</span>
|
||||
</code></pre></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="admonition tip">
|
||||
<p class="admonition-title">Difference between <code>NOTIFICATION_SERVER_URL</code> and <code>INNER_NOTIFICATION_SERVER_URL</code></p>
|
||||
<ul>
|
||||
<li><code>NOTIFICATION_SERVER_URL</code>: used to do the connection between client (i.e., user's browser) and notification server</li>
|
||||
<li><code>INNER_NOTIFICATION_SERVER_URL</code>: used to do the connection between Seafile server and notification server</li>
|
||||
</ul>
|
||||
</div>
|
||||
<p>Finally, You can run notification server with the following command:</p>
|
||||
<div class="highlight"><pre><span></span><code>docker<span class="w"> </span>compose<span class="w"> </span>down
|
||||
docker<span class="w"> </span>compose<span class="w"> </span>up<span class="w"> </span>-d
|
||||
</code></pre></div>
|
||||
<h2 id="checking-notification-server-status">Checking notification server status<a class="headerlink" href="#checking-notification-server-status" title="Permanent link">¶</a></h2>
|
||||
<p>When the notification server is working, you can access <code>http://127.0.0.1:8083/ping</code> from your browser, which will answer <code>{"ret": "pong"}</code>. If you have a proxy configured, you can access <code>https://{server}/notification/ping</code> from your browser instead.</p>
|
||||
<p>When the notification server is working, you can access <code>http://127.0.0.1:8083/ping</code> from your browser, which will answer <code>{"ret": "pong"}</code>. If you have a proxy configured, you can access <code>https://seafile.example.com/notification/ping</code> from your browser instead.</p>
|
||||
<h2 id="compatible-client">Compatible client<a class="headerlink" href="#compatible-client" title="Permanent link">¶</a></h2>
|
||||
<ol>
|
||||
<li>Seadrive 3.0.1 or later.</li>
|
||||
|
|
@ -4768,10 +4776,6 @@ wget<span class="w"> </span>-O<span class="w"> </span>.env<span class="w"> </spa
|
|||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td><code>NOTIFICATION_SERVER_VOLUME</code></td>
|
||||
<td>The volume directory of notification server data</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code>SEAFILE_MYSQL_DB_HOST</code></td>
|
||||
<td>Seafile MySQL host</td>
|
||||
</tr>
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ SEAFILE_DB_IMAGE=mariadb:10.11
|
|||
SEAFILE_REDIS_IMAGE=redis
|
||||
SEAFILE_CADDY_IMAGE=lucaslorentz/caddy-docker-proxy:2.9-alpine
|
||||
SEADOC_IMAGE=seafileltd/sdoc-server:1.0-latest
|
||||
NOTIFICATION_SERVER_IMAGE=seafileltd/notification-server:12.0-latest
|
||||
NOTIFICATION_SERVER_IMAGE=seafileltd/notification-server:13.0-latest
|
||||
MD_IMAGE=seafileltd/seafile-md-server:latest
|
||||
|
||||
## Persistent Storage
|
||||
|
|
@ -19,7 +19,6 @@ SEAFILE_VOLUME=$BASIC_STORAGE_PATH/seafile-data
|
|||
SEAFILE_MYSQL_VOLUME=$BASIC_STORAGE_PATH/seafile-mysql/db
|
||||
SEAFILE_CADDY_VOLUME=$BASIC_STORAGE_PATH/seafile-caddy
|
||||
SEADOC_VOLUME=$BASIC_STORAGE_PATH/seadoc-data
|
||||
NOTIFICATION_SERVER_VOLUME=$BASIC_STORAGE_PATH/notification-data
|
||||
|
||||
#################################
|
||||
# Startup parameters #
|
||||
|
|
|
|||
|
|
@ -72,6 +72,7 @@ services:
|
|||
- REDIS_PASSWORD=${REDIS_PASSWORD:-}
|
||||
- MEMCACHED_HOST=${MEMCACHED_HOST:-memcached}
|
||||
- MEMCACHED_PORT=${MEMCACHED_PORT:-11211}
|
||||
- INNER_NOTIFICATION_SERVER_URL=${INNER_NOTIFICATION_SERVER_URL:-http://notification-server:8083}
|
||||
- NOTIFICATION_SERVER_URL=${NOTIFICATION_SERVER_URL:-}
|
||||
- ENABLE_SEAFILE_AI=${ENABLE_SEAFILE_AI:-false}
|
||||
- SEAFILE_AI_SERVER_URL=${SEAFILE_AI_SERVER_URL:-http://seafile-ai:8888}
|
||||
|
|
|
|||
|
|
@ -44,6 +44,7 @@ S3_SSE_C_KEY=
|
|||
|
||||
## Notification
|
||||
NOTIFICATION_SERVER_URL=
|
||||
INNER_NOTIFICATION_SERVER_URL=$NOTIFICATION_SERVER_URL
|
||||
|
||||
## Seafile AI
|
||||
ENABLE_SEAFILE_AI=false
|
||||
|
|
|
|||
|
|
@ -46,6 +46,7 @@ services:
|
|||
- SITE_ROOT=${SITE_ROOT:-/}
|
||||
- ENABLE_SEADOC=${ENABLE_SEADOC:-false}
|
||||
- SEADOC_SERVER_URL=${SEADOC_SERVER_URL:-http://seafile.example.com/sdoc-server}
|
||||
- INNER_NOTIFICATION_SERVER_URL=${INNER_NOTIFICATION_SERVER_URL:-}
|
||||
- NOTIFICATION_SERVER_URL=${NOTIFICATION_SERVER_URL:-}
|
||||
- ENABLE_SEAFILE_AI=${ENABLE_SEAFILE_AI:-false}
|
||||
- SEAFILE_AI_SERVER_URL=$SEAFILE_AI_SERVER_URL
|
||||
|
|
|
|||
|
|
@ -1,12 +1,11 @@
|
|||
services:
|
||||
|
||||
notification-server:
|
||||
image: ${NOTIFICATION_SERVER_IMAGE:-seafileltd/notification-server:12.0-latest}
|
||||
image: ${NOTIFICATION_SERVER_IMAGE:-seafileltd/notification-server:13.0-latest}
|
||||
container_name: notification-server
|
||||
restart: always
|
||||
volumes:
|
||||
- ${NOTIFICATION_SERVER_VOLUME:-/opt/notification-data}:/shared
|
||||
- ${NOTIFICATION_SERVER_VOLUME:-/opt/notification-data}/logs:/shared/logs
|
||||
- ${SEAFILE_VOLUME:-/opt/seafile-data}/seafile/logs:/shared/seafile/logs
|
||||
# ports:
|
||||
# - "8083:8083"
|
||||
environment:
|
||||
|
|
|
|||
|
|
@ -2,9 +2,9 @@ COMPOSE_FILE='notification-server.yml'
|
|||
COMPOSE_PATH_SEPARATOR=','
|
||||
|
||||
|
||||
NOTIFICATION_SERVER_IMAGE=seafileltd/notification-server:12.0-latest
|
||||
NOTIFICATION_SERVER_IMAGE=seafileltd/notification-server:13.0-latest
|
||||
|
||||
NOTIFICATION_SERVER_VOLUME=/opt/notification-data
|
||||
SEAFILE_VOLUME=/opt/seafile-data
|
||||
|
||||
SEAFILE_MYSQL_DB_HOST=192.168.0.2
|
||||
SEAFILE_MYSQL_DB_USER=seafile
|
||||
|
|
|
|||
|
|
@ -1,12 +1,11 @@
|
|||
services:
|
||||
|
||||
notification-server:
|
||||
image: ${NOTIFICATION_SERVER_IMAGE:-seafileltd/notification-server:12.0-latest}
|
||||
image: ${NOTIFICATION_SERVER_IMAGE:-seafileltd/notification-server:13.0-latest}
|
||||
container_name: notification-server
|
||||
restart: always
|
||||
volumes:
|
||||
- ${NOTIFICATION_SERVER_VOLUME:-/opt/notification-data}:/shared
|
||||
- ${NOTIFICATION_SERVER_VOLUME:-/opt/notification-data}/logs:/shared/logs
|
||||
- ${SEAFILE_VOLUME:-/opt/seafile-data}/seafile/logs:/shared/seafile/logs
|
||||
ports:
|
||||
- "8083:8083"
|
||||
environment:
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ SEAFILE_REDIS_IMAGE=redis
|
|||
SEAFILE_ELASTICSEARCH_IMAGE=elasticsearch:8.15.0
|
||||
SEAFILE_CADDY_IMAGE=lucaslorentz/caddy-docker-proxy:2.9-alpine
|
||||
SEADOC_IMAGE=seafileltd/sdoc-server:1.0-latest
|
||||
NOTIFICATION_SERVER_IMAGE=seafileltd/notification-server:12.0-latest
|
||||
NOTIFICATION_SERVER_IMAGE=seafileltd/notification-server:13.0-latest
|
||||
#SEASEARCH_IMAGE=seafileltd/seasearch-nomkl:1.0-latest # Apple's Chip for SeaSearch
|
||||
SEASEARCH_IMAGE=seafileltd/seasearch:1.0-latest
|
||||
MD_IMAGE=seafileltd/seafile-md-server:latest
|
||||
|
|
@ -29,7 +29,6 @@ SEAFILE_VOLUME=$BASIC_STORAGE_PATH/seafile-data
|
|||
SEAFILE_MYSQL_VOLUME=$BASIC_STORAGE_PATH/seafile-mysql/db
|
||||
SEAFILE_ELASTICSEARCH_VOLUME=$BASIC_STORAGE_PATH/seafile-elasticsearch/data
|
||||
SEAFILE_CADDY_VOLUME=$BASIC_STORAGE_PATH/seafile-caddy
|
||||
NOTIFICATION_SERVER_VOLUME=$BASIC_STORAGE_PATH/notification-data
|
||||
SS_DATA_PATH=$BASIC_STORAGE_PATH/seasearch-data
|
||||
SEADOC_VOLUME=$BASIC_STORAGE_PATH/seadoc-data
|
||||
|
||||
|
|
|
|||
|
|
@ -84,6 +84,7 @@ services:
|
|||
- S3_USE_HTTPS=${S3_USE_HTTPS:-true}
|
||||
- S3_PATH_STYLE_REQUEST=${S3_PATH_STYLE_REQUEST:-false}
|
||||
- S3_SSE_C_KEY=${S3_SSE_C_KEY:-}
|
||||
- INNER_NOTIFICATION_SERVER_URL=${INNER_NOTIFICATION_SERVER_URL:-http://notification-server:8083}
|
||||
- NOTIFICATION_SERVER_URL=${NOTIFICATION_SERVER_URL:-}
|
||||
- ENABLE_SEAFILE_AI=${ENABLE_SEAFILE_AI:-false}
|
||||
- SEAFILE_AI_SERVER_URL=${SEAFILE_AI_SERVER_URL:-http://seafile-ai:8888}
|
||||
|
|
|
|||
|
|
@ -111,6 +111,11 @@ spec:
|
|||
configMapKeyRef:
|
||||
name: seafile-env
|
||||
key: MEMCACHED_PORT
|
||||
- name: INNER_NOTIFICATION_SERVER_URL
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
name: seafile-env
|
||||
key: NOTIFICATION_SERVER_URL
|
||||
- name: NOTIFICATION_SERVER_URL
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
|
|
|
|||
|
|
@ -169,6 +169,11 @@ spec:
|
|||
configMapKeyRef:
|
||||
name: seafile-env
|
||||
key: S3_PATH_STYLE_REQUEST
|
||||
- name: INNER_NOTIFICATION_SERVER_URL
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
name: seafile-env
|
||||
key: NOTIFICATION_SERVER_URL
|
||||
- name: NOTIFICATION_SERVER_URL
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
|
|
|
|||
|
|
@ -154,6 +154,11 @@ spec:
|
|||
configMapKeyRef:
|
||||
name: seafile-env
|
||||
key: S3_PATH_STYLE_REQUEST
|
||||
- name: INNER_NOTIFICATION_SERVER_URL
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
name: seafile-env
|
||||
key: NOTIFICATION_SERVER_URL
|
||||
- name: NOTIFICATION_SERVER_URL
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
|
|
|
|||
|
|
@ -161,6 +161,11 @@ spec:
|
|||
configMapKeyRef:
|
||||
name: seafile-env
|
||||
key: MEMCACHED_PORT
|
||||
- name: INNER_NOTIFICATION_SERVER_URL
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
name: seafile-env
|
||||
key: NOTIFICATION_SERVER_URL
|
||||
- name: NOTIFICATION_SERVER_URL
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
228
13.0/sitemap.xml
228
13.0/sitemap.xml
|
|
@ -2,458 +2,458 @@
|
|||
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/changelog/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/administration/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/administration/account/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/administration/auditing/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/administration/backup_recovery/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/administration/clean_database/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/administration/export_report/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/administration/logs/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/administration/seafile_fsck/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/administration/seafile_gc/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/administration/security_features/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/administration/two_factor_authentication/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/changelog/changelog-for-seafile-professional-server-old/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/changelog/changelog-for-seafile-professional-server/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/changelog/client-changelog/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/changelog/drive-client-changelog/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/changelog/server-changelog-old/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/changelog/server-changelog/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/config/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/config/admin_roles_permissions/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/config/auth_switch/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/config/auto_login_seadrive/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/config/ccnet-conf/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/config/config_seafile_with_ADFS/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/config/customize_email_notifications/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/config/details_about_file_search/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/config/env/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/config/ldap_in_ce/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/config/ldap_in_pro/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/config/multi_institutions/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/config/multi_tenancy/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/config/oauth/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/config/ocm/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/config/remote_user/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/config/roles_permissions/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/config/saml2/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/config/seafevents-conf/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/config/seafile-conf/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/config/seahub_customization/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/config/seahub_settings_py/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/config/sending_email/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/config/shibboleth_authentication/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/config/single_sign_on/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/develop/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/develop/build_seafile/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/develop/data_model/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/develop/linux/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/develop/osx/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/develop/rpi/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/develop/server/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/develop/translation/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/develop/web_api_v2.1/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/develop/windows/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/extension/distributed_indexing/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/extension/fuse/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/extension/libreoffice_online/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/extension/metadata-server/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/extension/notification-server/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/extension/office_web_app/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/extension/only_office/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/extension/seafile_ai/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/extension/setup_seadoc/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/extension/thumbnail-server/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/extension/virus_scan/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/extension/virus_scan_with_clamav/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/extension/virus_scan_with_kav4fs/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/extension/webdav/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/introduction/components/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/introduction/contribution/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/introduction/file_permission_management/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/introduction/roadmap/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/setup/caddy/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/setup/cluster_deploy_with_docker/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/setup/cluster_deploy_with_k8s/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/setup/helm_chart_cluster/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/setup/helm_chart_single_node/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/setup/k8s_advanced_management/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/setup/k8s_single_node/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/setup/migrate_backends_data/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/setup/migrate_ce_to_pro_with_docker/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/setup/migrate_non_docker_to_docker/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/setup/overview/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/setup/run_seafile_as_non_root_user_inside_docker/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/setup/seafile_docker_autostart/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/setup/setup_ce_by_docker/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/setup/setup_pro_by_docker/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/setup/setup_with_an_existing_mysql_server/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/setup/setup_with_ceph/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/setup/setup_with_multiple_storage_backends/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/setup/setup_with_s3/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/setup/setup_with_swift/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/setup/system_requirements/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/setup/use_other_reverse_proxy/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/setup/use_seasearch/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/setup_binary/cluster_deployment/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/setup_binary/https_with_nginx/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/setup_binary/installation_pro/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/setup_binary/migrate_from_sqlite_to_mysql/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/setup_binary/outline_ce/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/setup_binary/outline_pro/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/setup_binary/seafile_professional_sdition_software_license_agreement/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/setup_binary/start_seafile_at_system_bootup/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/setup_binary/using_logrotate/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/upgrade/upgrade/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/upgrade/upgrade_a_cluster/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/upgrade/upgrade_a_cluster_binary/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/upgrade/upgrade_docker/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/upgrade/upgrade_notes_for_10.0.x/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/upgrade/upgrade_notes_for_11.0.x/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/upgrade/upgrade_notes_for_12.0.x/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/upgrade/upgrade_notes_for_13.0.x/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/upgrade/upgrade_notes_for_8.0.x/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://haiwen.github.io/seafile-admin-docs/13.0/upgrade/upgrade_notes_for_9.0.x/</loc>
|
||||
<lastmod>2025-06-25</lastmod>
|
||||
<lastmod>2025-06-26</lastmod>
|
||||
</url>
|
||||
</urlset>
|
||||
Binary file not shown.
Loading…
Reference in New Issue