-
-
Notifications
You must be signed in to change notification settings - Fork 67
Description
Hey Julian,
I'm trying to get it work.
Running on docker with Traefik as a reverse proxy i'm getting this error:
Bad Request
Your browser sent a request that this server could not understand.
Reason: You're speaking plain HTTP to an SSL-enabled server port.
Instead use the HTTPS scheme to access this URL, please.
(you can see this on 'https://linkjes.woutr.io')
Editing the port to 80 or back to 443 doesn't solve a thing.
This is my docker-compose file;
`
version: '2'
networks:
web:
external: true
services:
app:
image: julianprieber/littlelink-custom
labels:
- "traefik.http.routers.littlelink.rule=Host(linkjes.woutr.io)"
- "traefik.http.routers.littlelink.tls=true"
- "traefik.http.routers.littlelink.tls.certresolver=lets-encrypt"
- "traefik.http.services.littlelink.loadbalancer.server.port=443"
- "traefik.docker.network=web"
volumes:
- ./data:/htdocs
environment:
- HTTP_SERVER_NAME=linkjes.woutr.io
- HTTPS_SERVER_NAME=linkjes.woutr.io
- SERVER_ADMIN=[email protected]
- TZ=Europe/Amsterdam
- PHP_MEMORY_LIMIT=512M
- UPLOAD_MAX_FILESIZE=16M
networks:
- web
restart: always
`