Skip to content

Commit 969b54a

Browse files
committed
Fix default
1 parent 2f33c0e commit 969b54a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ services:
9090
- PUID=1000
9191
- PGID=1000
9292
- TZ=Etc/UTC
93-
- BASE_URL=/ombi #optional
93+
- BASE_URL=/ #optional
9494
volumes:
9595
- /path/to/ombi/config:/config
9696
ports:
@@ -106,7 +106,7 @@ docker run -d \
106106
-e PUID=1000 \
107107
-e PGID=1000 \
108108
-e TZ=Etc/UTC \
109-
-e BASE_URL=/ombi `#optional` \
109+
-e BASE_URL=/ `#optional` \
110110
-p 3579:3579 \
111111
-v /path/to/ombi/config:/config \
112112
--restart unless-stopped \
@@ -123,7 +123,7 @@ Containers are configured using parameters passed at runtime (such as those abov
123123
| `-e PUID=1000` | for UserID - see below for explanation |
124124
| `-e PGID=1000` | for GroupID - see below for explanation |
125125
| `-e TZ=Etc/UTC` | specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). |
126-
| `-e BASE_URL=/ombi` | Subfolder can optionally be defined as an env variable for reverse proxies. Keep in mind that once this value is defined, the gui setting for base url no longer works. To use the gui setting, remove this env variable. |
126+
| `-e BASE_URL=/` | Subfolder can optionally be defined as an env variable for reverse proxies. Keep in mind that once this value is defined, the gui setting for base url no longer works. To use the gui setting, remove this env variable. |
127127
| `-v /config` | Contains all relevant configuration files. |
128128

129129
## Environment variables from files (Docker secrets)

readme-vars.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ param_ports:
2727
# optional container parameters
2828
opt_param_usage_include_env: true
2929
opt_param_env_vars:
30-
- {env_var: "BASE_URL", env_value: "/ombi", desc: "Subfolder can optionally be defined as an env variable for reverse proxies. Keep in mind that once this value is defined, the gui setting for base url no longer works. To use the gui setting, remove this env variable."}
30+
- {env_var: "BASE_URL", env_value: "/", desc: "Subfolder can optionally be defined as an env variable for reverse proxies. Keep in mind that once this value is defined, the gui setting for base url no longer works. To use the gui setting, remove this env variable."}
3131

3232
readonly_supported: true
3333
readonly_message: |

0 commit comments

Comments
 (0)