comment out some stuff
This commit is contained in:
26
commands/bx-webpage/bx-webpage.conf
Normal file
26
commands/bx-webpage/bx-webpage.conf
Normal file
@ -0,0 +1,26 @@
|
||||
server {
|
||||
listen 80;
|
||||
server_name www.bergx.io;
|
||||
return 301 https://$server_name$request_uri;
|
||||
}
|
||||
|
||||
server {
|
||||
listen 80;
|
||||
server_name bergx.io;
|
||||
return 301 https://$server_name$request_uri;
|
||||
}
|
||||
server {
|
||||
listen 443 ssl;
|
||||
server_name test.bergx.io bergx.io ~^(test.)?bergx.io ~^(www.)?bergx.io;
|
||||
keepalive_timeout 70;
|
||||
|
||||
ssl_certificate /etc/letsencrypt/live/app.stormfolder.com/fullchain.pem;
|
||||
ssl_certificate_key /etc/letsencrypt/live/app.stormfolder.com/privkey.pem;
|
||||
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
|
||||
ssl_ciphers HIGH:!aNULL:!MD5;
|
||||
|
||||
location / {
|
||||
root /Bergx/bx-webpage/dist;
|
||||
try_files $uri /index.html;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user