Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
 
 
 
 
 
 
Guillaume Vincent ed80a2f892 remove useless ISSUE_TEMPLATE 8 роки тому
conf.d configure default server 8 роки тому
dockersible add self signed certificates if no certificates provided 8 роки тому
tests add self signed certificates if no certificates provided 8 роки тому
.gitignore force https 8 роки тому
Dockerfile configure default server 8 роки тому
LICENSE change license from MIT to GNU GPLv3 8 роки тому
backend.conf.j2 configure default server 8 роки тому
entrypoint.sh add self signed certificates if no certificates provided 8 роки тому
install.py configure default server 8 роки тому
readme.md change license from MIT to GNU GPLv3 8 роки тому

readme.md

nginx container for LessPass

custom SSL certificate

change domain name in docker-compose.yml file

replace YOUR_DOMAIN_NAME

.....
    ports:
     - "8080:8080"
  nginx:
    restart: always
    build: ./nginx
    ports:
      - "80:80"
      - "443:443"
    environment:
      - domain=YOUR_DOMAIN_NAME
    volumes:
      - ./nginx/ssl:/certificates
    volumes_from:
      - backend
    links:
      - backend
      - frontend
.....

copy your private key to ssl/YOUR_DOMAIN_NAME.key copy your certificate to ssl/YOUR_DOMAIN_NAME.crt

if you have extra certificate authorities, copy the file to ssl/YOUR_DOMAIN_NAME.ca.crt if you have a DH parameter file, copy the file to ssl/YOUR_DOMAIN_NAME.dhparam.pem

Example if your domain is lesspass.com

ls ssl/
lesspass.com.ca.crt  lesspass.com.crt  lesspass.com.dhparam.pem  lesspass.com.key

License

This project is licensed under the terms of the GNU GPLv3.

Issues

report issues on LessPass project