macyan13 / webdict

MIT License
1 stars 0 forks source link

Webdict is a self-hosted web application to create and use your own dictionaries for different languages.

Main features

Tech details

Note: Need to comment entrypoint override for this container in docker compose file before the command run.

As Letsencrypt makes acknowledge via http for initial run you need to adjust nginx config to serve probe without SSl certs.

server {
listen 80;
listen [::]:80;

    server_name ${SERVER_NAME} www.${SERVER_NAME};
    server_tokens off;

    location /.well-known/acme-challenge/ {
        root /var/www/certbot;
    }

    location / {
        proxy_pass http://webdict:${APP_PORT};
    }
}

Related projects