From 9e7a908136ef18c2aa585e055e844b5f299facda Mon Sep 17 00:00:00 2001 From: MaxJa4 <74194322+MaxJa4@users.noreply.github.com> Date: Fri, 18 Feb 2022 13:23:51 +0100 Subject: [PATCH] Add syntax highlighting for nginx subpath example --- docs/install/docker.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/install/docker.md b/docs/install/docker.md index b8ed504e..e309099e 100644 --- a/docs/install/docker.md +++ b/docs/install/docker.md @@ -354,7 +354,7 @@ follow these instructions: If hosting under a sub-path you might want to change the default nginx config (which gets mounted through the named volume from the application container into the nginx container) with the following config. -``` +```nginx location /my_app { # change to subfolder name include /config/nginx/proxy.conf; proxy_pass https://mywebapp.com/; # change to your host name:port @@ -378,4 +378,4 @@ location /static/ { client_max_body_size 16M; } -``` \ No newline at end of file +```