eoscostarica / lifebank

An incentive-based EOSIO blockchain solution for blood donations :heart:
https://lifebank.io
MIT License
15 stars 16 forks source link

Nginx Error #760

Closed xavier506 closed 3 years ago

xavier506 commented 3 years ago
/docker-entrypoint.sh: /docker-entrypoint.d/ is not empty, will attempt to perform configuration
/docker-entrypoint.sh: Looking for shell scripts in /docker-entrypoint.d/
/docker-entrypoint.sh: Launching /docker-entrypoint.d/10-listen-on-ipv6-by-default.sh
10-listen-on-ipv6-by-default.sh: Getting the checksum of /etc/nginx/conf.d/default.conf
10-listen-on-ipv6-by-default.sh: /etc/nginx/conf.d/default.conf differs from the packaged version, exiting
/docker-entrypoint.sh: Launching /docker-entrypoint.d/20-envsubst-on-templates.sh
/docker-entrypoint.sh: Configuration complete; ready for start up

https://github.com/eoscostarica/lifebank/blob/master/webapp/nginx.conf

xavier506 commented 3 years ago
server {  listen 80;
  location ~* ^/static/(css|js)/$ {    add_header Cache-Control "public, max-age=31536000";    expires 365d;  }
  location ~* ^/static/media/$ {    add_header Cache-Control "no-cache, must-revalidate";    expires 24h;  }
  location / {    root /usr/share/nginx/html;    index index.html index.htm;    try_files $uri $uri/ /index.html =404;    add_header Cache-Control "no-store";   }}