aboutsummaryrefslogtreecommitdiffstats
path: root/spring-front/nginx.conf
blob: e7265125d80962e1b5a371beeaa6568513ab17e2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
events {
  worker_connections 1024;
}
http {
  server {
    listen 443 ssl;
    keepalive_timeout 70;
    ssl_certificate /certs/server.cert;
    ssl_certificate_key /certs/server.key;
    ssl_protocols TLSv1.2 TLSv1.3;
    ssl_ciphers HIGH:!aNULL:!MD5;
    sendfile on;
    tcp_nopush on;
    location / {
      root /usr/share/nginx/html;
    }
  }
}