diff --git a/documentation/.vitepress/config.mts b/documentation/.vitepress/config.mts index b79077c..163c4c5 100644 --- a/documentation/.vitepress/config.mts +++ b/documentation/.vitepress/config.mts @@ -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" diff --git a/documentation/docs/install/nginx_proxy_manager.md b/documentation/docs/install/nginx_proxy_manager.md index e02882a..fc58b7a 100644 --- a/documentation/docs/install/nginx_proxy_manager.md +++ b/documentation/docs/install/nginx_proxy_manager.md @@ -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