File tree 3 files changed +10
-0
lines changed
3 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -2,3 +2,4 @@ private-config/
2
2
deploy-config /
3
3
dev-config /THIS_IS_BATCH
4
4
* .pyc
5
+ certs
Original file line number Diff line number Diff line change 31
31
# Basic service
32
32
- service : name=postgresql state=started
33
33
- 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
34
36
- template : src=deployment/nginx.conf dest=/etc/nginx/sites-enabled/default
35
37
notify : restart nginx
36
38
- 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 {
11
11
server_name staging.cs.qu.to;
12
12
13
13
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
+
14
21
15
22
location /static/ {
16
23
You can’t perform that action at this time.
0 commit comments