Merge pull request #3931 from tar-xz/main

Unify `<your-nc-domain>` throughout the doc
This commit is contained in:
Simon L 2024-01-02 10:52:14 +01:00 committed by GitHub
commit c1dab5790c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -505,7 +505,7 @@ myNextcloudApp.use((req, res) => {
proxy.web(req, res, {}, onProxyError); proxy.web(req, res, {}, onProxyError);
}); });
vhost.use(vhostFunc('<your-nextcloud-domain>', myNextcloudApp)); vhost.use(vhostFunc('<your-nc-domain>', myNextcloudApp));
const httpServer = http.createServer(app); const httpServer = http.createServer(app);
httpServer.listen('80'); httpServer.listen('80');
@ -579,7 +579,7 @@ The examples below define the dynamic configuration in YAML files. If you rather
http: http:
routers: routers:
nextcloud: nextcloud:
rule: "Host(`<your-nextcloud-domain>`)" rule: "Host(`<your-nc-domain>`)"
entrypoints: entrypoints:
- "https" - "https"
service: nextcloud service: nextcloud