Mixed Content Blocked when trying to add a link item #286
Replies: 2 comments
-
Fixed the issue using the configuration from https://github.com/JulianPrieber/llc-docker#nginx. But still can't manage to add a link item. When I entered the credentials and click the login button. I got redirected to https://<site_url>/login and got error 419. |
Beta Was this translation helpful? Give feedback.
-
I got it working with version: '3.9'
volumes:
llc:
networks:
traefik:
external: true
services:
littlelink:
image: julianprieber/littlelink-custom
restart: unless-stopped
container_name: littlelink
expose:
- 80
environment:
HTTP_SERVER_NAME: example.com
HTTPS_SERVER_NAME: example.com
SERVER_ADMIN: [email protected]
TZ: Europe/Warsaw
PHP_MEMORY_LIMIT: 1024M
UPLOAD_MAX_FILESIZE: 32M
#FORCE_ROUTE_HTTPS: true
volumes:
- llc:/htdocs
networks:
- traefik
labels:
traefik.enable: true
traefik.docker.network: traefik
traefik.http.routers.homepage.entrypoints: websecure
traefik.http.routers.homepage.rule: Host(`example.com`)
traefik.http.routers.homepage.tls: true
traefik.http.routers.homepage.tls.certresolver: myresolver
traefik.http.middlewares.homepage.headers.contentsecuritypolicy: upgrade-insecure-requests
traefik.http.routers.homepage.middlewares: homepage
And, if you shell be interested, I also include my traefik's docker-compose file version: "3.9"
networks:
traefik:
name: traefik
services:
traefik:
image: "traefik:v2.8"
container_name: "traefik"
command:
#- "--log.level=DEBUG"
- "--api.insecure=true"
- "--providers.docker=true"
- "--providers.docker.exposedbydefault=false"
- "--entrypoints.web.address=:80"
- "--entrypoints.web.http.redirections.entryPoint.to=websecure"
- "--entrypoints.web.http.redirections.entryPoint.scheme=https"
- "--entrypoints.websecure.address=:443"
- "--certificatesresolvers.myresolver.acme.httpchallenge=true"
- "--certificatesresolvers.myresolver.acme.httpchallenge.entrypoint=web"
#- "--certificatesresolvers.myresolver.acme.caserver=https://acme-staging-v02.api.letsencrypt.org/directory"
- "[email protected]"
- "--certificatesresolvers.myresolver.acme.storage=/letsencrypt/acme.json"
ports:
- "80:80"
- "443:443"
- "127.0.0.1:8080:8080"
volumes:
- "./letsencrypt:/letsencrypt"
- "/var/run/docker.sock:/var/run/docker.sock:ro"
networks:
- traefik |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi all,

I just deployed littlelink-custom using docker and just started to configure the site. But I got this error in Firefox's Console Log while trying to create a link item.
Blocked loading mixed active content “http://<site_url>/studio/linkparamform_part/1/0”.
And these are the relevant configs.


Beta Was this translation helpful? Give feedback.
All reactions