Skip to content
Snippets Groups Projects
Select Git revision
  • 05620f674828d313ce163668c8f4ee37e7a29f56
  • master default protected
  • performance_fix
  • fix-performance
  • feat-add_docker
5 results

app.conf

Blame
  • app.conf 710 B
    server {
        listen 80;
    
        server_name staging-deadlock-demo.takima.io www.staging-deadlock-demo.takima.io;
    
    
        location ^~ /.well-known/acme-challenge/ {
            allow all;
            root /var/www/certbot;
        }
    
    
    }
    server {
        listen 443 ssl;
        server_name staging-deadlock-demo.takima.io www.staging-deadlock-demo.takima.io;
    
        location / {
                proxy_pass http://staging-deadlock-demo.takima.io;
            }
    
        ssl_certificate /etc/letsencrypt/live/staging-deadlock-demo.takima.io/fullchain.pem;
        ssl_certificate_key /etc/letsencrypt/live/staging-deadlock-demo.takima.io/privkey.pem;
        include /etc/letsencrypt/options-ssl-nginx.conf;
        ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem;
    }