Skip to content

Commit ae0a6f9

Browse files
author
Bryan Latten
committed
Merge pull request #21 from bryanlatten/feature-nginx-server-block
Nginx: move default server block out of conf
2 parents 7813999 + 8c840db commit ae0a6f9

File tree

2 files changed

+4
-81
lines changed

2 files changed

+4
-81
lines changed

container/root/etc/nginx/nginx.conf

Lines changed: 2 additions & 80 deletions
Original file line numberDiff line numberDiff line change
@@ -42,84 +42,6 @@ http {
4242
scgi_temp_path /tmp/scgi_temp;
4343
uwsgi_temp_path /tmp/uwsgi_temp;
4444

45-
server {
46-
listen 80;
47-
server_name localhost;
48-
49-
#charset koi8-r;
50-
51-
location / {
52-
root html;
53-
index index.html index.htm;
54-
}
55-
56-
#error_page 404 /404.html;
57-
58-
# redirect server error pages to the static page /50x.html
59-
#
60-
error_page 500 502 503 504 /50x.html;
61-
location = /50x.html {
62-
root html;
63-
}
64-
65-
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
66-
#
67-
#location ~ \.php$ {
68-
# proxy_pass http://127.0.0.1;
69-
#}
70-
71-
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
72-
#
73-
#location ~ \.php$ {
74-
# root html;
75-
# fastcgi_pass 127.0.0.1:9000;
76-
# fastcgi_index index.php;
77-
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
78-
# include fastcgi_params;
79-
#}
80-
81-
# deny access to .htaccess files, if Apache's document root
82-
# concurs with nginx's one
83-
#
84-
#location ~ /\.ht {
85-
# deny all;
86-
#}
87-
}
88-
89-
90-
# another virtual host using mix of IP-, name-, and port-based configuration
91-
#
92-
#server {
93-
# listen 8000;
94-
# listen somename:8080;
95-
# server_name somename alias another.alias;
96-
97-
# location / {
98-
# root html;
99-
# index index.html index.htm;
100-
# }
101-
#}
102-
103-
104-
# HTTPS server
105-
#
106-
#server {
107-
# listen 443 ssl;
108-
# server_name localhost;
109-
110-
# ssl_certificate cert.pem;
111-
# ssl_certificate_key cert.key;
112-
113-
# ssl_session_cache shared:SSL:1m;
114-
# ssl_session_timeout 5m;
115-
116-
# ssl_ciphers HIGH:!aNULL:!MD5;
117-
# ssl_prefer_server_ciphers on;
118-
119-
# location / {
120-
# root html;
121-
# index index.html index.htm;
122-
# }
123-
#}
124-
45+
# Everything available is enabled in the container
46+
include /etc/nginx/sites-available/*;
12547
}

container/root/etc/nginx/sites-available/default

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
server {
22
listen 80;
33

4-
server_tokens off; # Doesn't broadcast version level of server software
4+
# Doesn't broadcast version level of server software
5+
server_tokens off;
56

67
# Replace with env variable SERVER_INDEX
78
index index.html index.htm;

0 commit comments

Comments
 (0)