File tree Expand file tree Collapse file tree 3 files changed +10
-0
lines changed Expand file tree Collapse file tree 3 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -2,3 +2,4 @@ private-config/
22deploy-config /
33dev-config /THIS_IS_BATCH
44* .pyc
5+ certs
Original file line number Diff line number Diff line change 3131 # Basic service
3232 - service : name=postgresql state=started
3333 - service : name=supervisor state=started
34+ - template : src=certs/progcom.njl.us.crt dest=/etc/nginx/progcom.njl.us.crt
35+ - template : src=certs/progcom.njl.us.key dest=/etc/nginx/progcom.njl.us.key
3436 - template : src=deployment/nginx.conf dest=/etc/nginx/sites-enabled/default
3537 notify : restart nginx
3638 - lineinfile : dest=/etc/postgresql/9.3/main/pg_hba.conf
Original file line number Diff line number Diff line change @@ -11,6 +11,13 @@ server {
1111 server_name staging.cs.qu.to;
1212
1313 listen 80 default_server;
14+ listen 443 ssl ;
15+
16+ server_name progcom.njl.us;
17+ ssl_certificate progcom.njl.us.crt;
18+ ssl_certificate_key progcom.njl.us.key;
19+
20+
1421
1522 location /static/ {
1623
You can’t perform that action at this time.
0 commit comments