Commit 3e2a830d authored by Evan Read's avatar Evan Read

Merge branch 'patch-29' into 'master'

Followup to !30199 (ce) to fix #60120 (ce)

See merge request gitlab-org/gitlab!16763
parents 3e60f389 32161314
......@@ -66,7 +66,13 @@ to the local PlantUML server `http://localhost:8080/plantuml`.
To enable the redirection, add the following line in `/etc/gitlab/gitlab.rb`:
```ruby
nginx['custom_gitlab_server_config'] = "location /-/plantuml { \n proxy_cache off; \n proxy_pass http://127.0.0.1:8080; \n}\n"
nginx['custom_gitlab_server_config'] = "location /-/plantuml/ { \n proxy_cache off; \n proxy_pass http://127.0.0.1:8080/plantuml/; \n}\n"
```
To activate the changes, run the following command:
```sh
sudo gitlab-ctl reconfigure
```
## GitLab
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment