File: nginx.conf

package info (click to toggle)
golang-github-notaryproject-notation 1.2.0-4
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 2,160 kB
  • sloc: sh: 202; makefile: 67
file content (19 lines) | stat: -rw-r--r-- 383 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
events {
    worker_connections 1024;
}

http {
    server {
        listen 80;
        listen 443 ssl;

        server_name notation-e2e.regisry.io;

        ssl_certificate /etc/nginx/notation-e2e.registry.io.crt;
        ssl_certificate_key /etc/nginx/notation-e2e.registry.io.key;

        location / {
            proxy_pass http://notation-e2e-registry:5000;
        }
    }
}