File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
server {
2
2
listen 80 ;
3
3
listen [::]:80;
4
- server_name field.geoace.net www.field.geoace.net ;
4
+ server_name subdomain.domain.com www.subdomain.domain.com ;
5
5
6
6
# Redirect HTTP to HTTPS
7
7
return 301 https://$host$request_uri ;
@@ -10,10 +10,10 @@ server {
10
10
server {
11
11
listen 443 ssl;
12
12
listen [::]:443 ssl;
13
- server_name field.geoace.net www.field.geoace.net ;
13
+ server_name subdomain.domain.com www.subdomain.domain.com ;
14
14
15
- ssl_certificate /etc/letsencrypt/live/field.geoace.net /fullchain.pem;
16
- ssl_certificate_key /etc/letsencrypt/live/field.geoace.net /privkey.pem;
15
+ ssl_certificate /etc/letsencrypt/live/subdomain.domain.com /fullchain.pem;
16
+ ssl_certificate_key /etc/letsencrypt/live/subdomain.domain.com /privkey.pem;
17
17
18
18
client_max_body_size 4G ;
19
19
You can’t perform that action at this time.
0 commit comments