File: both.com

package info (click to toggle)
python-certbot-nginx 4.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 660 kB
  • sloc: python: 4,507; sh: 47; makefile: 11
file content (32 lines) | stat: -rw-r--r-- 501 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
20
21
22
23
24
25
26
27
28
29
30
31
32
server {
  server_name ssl.both.com;
}

# a duplicate vhost
server {
  server_name ssl.both.com;
}

# a duplicate by means of wildcard
server {
  server_name *.both.com;
}

# combined HTTP and HTTPS
server {
  server_name ssl.both.com;
  listen 80;
  listen 5001 ssl;

  ssl_certificate      cert.pem;
  ssl_certificate_key  cert.key;
}

# HTTPS, duplicate by means of wildcard
server {
  server_name *.both.com;
  listen 5001 ssl;

  ssl_certificate      cert.pem;
  ssl_certificate_key  cert.key;
}