This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server { | |
listen 443 ssl; | |
server_name api.example.com; | |
ssl_certificate /etc/ssl/custom/api.example.com.crt; | |
ssl_certificate_key /etc/ssl/custom/api.example.com.key; | |
ssl_session_cache shared:SSL:1m; | |
ssl_session_timeout 5m; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server { | |
listen 443 ssl; | |
server_name api.example.com; | |
root /var/www/api/public/; | |
index index.php index.html index.htm; | |
### Begin SSL | |
ssl_certificate /etc/ssl/custom/api.example.com.crt; | |
ssl_certificate_key /etc/ssl/custom/api.example.com.key; |
NewerOlder