mirror of
https://github.com/seanmorley15/AdventureLog.git
synced 2025-07-22 14:29:36 +02:00
Enhance documentation: update VitePress config to ignore localhost links with any port and correct docker-compose.yml formatting for Nginx Proxy Manager
This commit is contained in:
parent
7a3ec33fa7
commit
f5a0f388b7
2 changed files with 7 additions and 2 deletions
|
@ -13,6 +13,11 @@ export default defineConfig({
|
|||
"/playground",
|
||||
// ignore all localhost links
|
||||
/^https?:\/\/localhost/,
|
||||
// ignore localhost links with any port
|
||||
// ignore http://localhost:8015
|
||||
/^https?:\/\/localhost:\d+/,
|
||||
/^http?:\/\/localhost:\d+/,
|
||||
// ignore all links include "/playground/"
|
||||
// ignore all links include "/repl/""
|
||||
/\/repl\//,
|
||||
// custom function, ignore all links include "ignore"
|
||||
|
|
|
@ -26,8 +26,8 @@ Add the folowing to the bottom of the `docker-compose.yml` file for the Nginx Pr
|
|||
```yaml
|
||||
networks:
|
||||
default:
|
||||
external:
|
||||
name: nginx-proxy-manager
|
||||
name: nginx-proxy-manager
|
||||
external: true
|
||||
```
|
||||
|
||||
## Setting Up Nginx Proxy Manager
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue