404 on localhost:8080 with the example docker run
command, modified to work with localhost
#131
-
Following https://shlink.io/documentation/install-docker-image/ and slighly modified to make it work on localhost for testing purposes: docker run \
--name my_shlink \
-p 8080:8080 \
-e DEFAULT_DOMAIN=localhost \
-e IS_HTTPS_ENABLED=false \
shlinkio/shlink:stable Opening localhost:8080 results ina 404 error. The Docker log:
|
Beta Was this translation helpful? Give feedback.
Replies: 0 comments 4 replies
-
Yes, that's expected. Shlink always returns a 404 in the base URL unless the Also, in your case it should be |
Beta Was this translation helpful? Give feedback.
Yes, that's expected. Shlink always returns a 404 in the base URL unless the
base_url
special redirect is configured.Also, in your case it should be
DEFAULT_DOMAIN=localhost:8080
, but that's unrelated to the 404.