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:
@@ -13,6 +13,11 @@ export default defineConfig({
|
|||||||
"/playground",
|
"/playground",
|
||||||
// ignore all localhost links
|
// ignore all localhost links
|
||||||
/^https?:\/\/localhost/,
|
/^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/""
|
// ignore all links include "/repl/""
|
||||||
/\/repl\//,
|
/\/repl\//,
|
||||||
// custom function, ignore all links include "ignore"
|
// 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
|
```yaml
|
||||||
networks:
|
networks:
|
||||||
default:
|
default:
|
||||||
external:
|
|
||||||
name: nginx-proxy-manager
|
name: nginx-proxy-manager
|
||||||
|
external: true
|
||||||
```
|
```
|
||||||
|
|
||||||
## Setting Up Nginx Proxy Manager
|
## Setting Up Nginx Proxy Manager
|
||||||
|
|||||||
Reference in New Issue
Block a user