Nginx: added OpenSSL for local development (#1527)

* feature(nginx): add OpenSSL
This commit is contained in:
Vladyslav Shchepotin
2018-11-13 14:44:51 +02:00
committed by Shao Yu-Lung (Allen)
parent 1dac382827
commit 7219b3543a
9 changed files with 38 additions and 1 deletions

View File

@ -3,6 +3,12 @@ server {
listen 80;
listen [::]:80;
# For https
# listen 443 ssl;
# listen [::]:443 ssl ipv6only=on;
# ssl_certificate /etc/nginx/ssl/default.crt;
# ssl_certificate_key /etc/nginx/ssl/default.key;
server_name symfony.test;
root /var/www/projects/symfony/web;
index index.php index.html index.htm;