You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
517 B
27 lines
517 B
server { |
|
server_name tasks-db-manager.rwsbank.com.ua; |
|
|
|
location / { |
|
proxy_http_version 1.1; |
|
proxy_pass http://localhost:4000; |
|
} |
|
|
|
|
|
listen 443 ssl; |
|
ssl_certificate /etc/ssl/rwsbank/ssl-bundle.crt; |
|
ssl_certificate_key /etc/ssl/rwsbank/com.key; |
|
} |
|
|
|
|
|
|
|
server { |
|
if ($host = tasks-db-manager.rwsbank.com.ua) { |
|
return 301 https://$host$request_uri; |
|
} |
|
|
|
listen 80; |
|
server_name tasks-db-manager.rwsbank.com.ua; |
|
return 404; |
|
|
|
|
|
} |