-
Notifications
You must be signed in to change notification settings - Fork 273
Location prefix behind reverse proxy + Button For Reload Configuration #53
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from 2 commits
fd9b10f
e8b1275
7ec7472
8e11751
fdce4a4
c301de7
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,30 @@ | ||
| version: '3' | ||
|
|
||
| services: | ||
|
|
||
| nginx-ui: | ||
| container_name: nginx-ui | ||
| build: . | ||
| image: bifeldy/nginx-ui:latest | ||
| # ports: | ||
| # - 8080:8080 | ||
| volumes: | ||
| - D:/_data/_docker/nginx:/etc/nginx | ||
| networks: | ||
| - bifeldy-net | ||
|
|
||
| nginx: | ||
| container_name: nginx | ||
| image: nginx:latest | ||
| ports: | ||
| - 8888:80 | ||
| volumes: | ||
| - D:/_data/_docker/nginx:/etc/nginx | ||
| networks: | ||
| - bifeldy-net | ||
|
|
||
| networks: | ||
|
|
||
| bifeldy-net: | ||
| name: bifeldy-net | ||
| external: true | ||
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you adjust the volume mounts to a unix path? I don't want to get requests related to windows support since I don't have a windows machine where I could test it. Thanks mate!