Skip to content

Commit eec7524

Browse files
author
Emmanuel Eliason-Armstrong
committed
.gitignore is now working
1 parent dd48370 commit eec7524

File tree

5 files changed

+25
-30
lines changed

5 files changed

+25
-30
lines changed

.gitignore

Lines changed: 0 additions & 5 deletions
This file was deleted.

docker-compose.yml

100755100644
File mode changed.

docker-ubuntu-install.sh

100755100644
File mode changed.

nginx/conf.d/default.conf

100755100644
Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
1-
server {
2-
listen 80;
3-
listen [::]:80;
4-
server_name _;
5-
return 301 https://$host$request_uri;
6-
}
7-
8-
server {
9-
listen 443 ssl http2;
10-
listen [::]:443 ssl http2;
11-
server_name SERVER_NAME;
12-
13-
ssl_protocols TLSv1.2;
14-
ssl_ciphers HIGH:!MEDIUM:!LOW:!aNULL:!NULL:!SHA;
15-
ssl_prefer_server_ciphers on;
16-
ssl_session_cache shared:SSL:10m;
17-
ssl_certificate /etc/nginx/certs/replaceme.crt;
18-
ssl_certificate_key /etc/nginx/certs/replaceme.key;
19-
20-
location / {
21-
proxy_set_header Host $host;
22-
proxy_set_header X-Real-IP $remote_addr;
23-
proxy_set_header X-Forwarded-Proto https;
24-
proxy_pass http://ghost:2368;
25-
}
1+
server {
2+
listen 80;
3+
listen [::]:80;
4+
server_name _;
5+
return 301 https://$host$request_uri;
6+
}
7+
8+
server {
9+
listen 443 ssl http2;
10+
listen [::]:443 ssl http2;
11+
server_name SERVER_NAME;
12+
13+
ssl_protocols TLSv1.2;
14+
ssl_ciphers HIGH:!MEDIUM:!LOW:!aNULL:!NULL:!SHA;
15+
ssl_prefer_server_ciphers on;
16+
ssl_session_cache shared:SSL:10m;
17+
ssl_certificate /etc/nginx/certs/replaceme.crt;
18+
ssl_certificate_key /etc/nginx/certs/replaceme.key;
19+
20+
location / {
21+
proxy_set_header Host $host;
22+
proxy_set_header X-Real-IP $remote_addr;
23+
proxy_set_header X-Forwarded-Proto https;
24+
proxy_pass http://ghost:2368;
25+
}
2626
}

www/index.html

100755100644
File mode changed.

0 commit comments

Comments
 (0)