Skip to content
This repository was archived by the owner on Sep 12, 2018. It is now read-only.

Commit 5720423

Browse files
committed
Merge pull request #605 from tcnksm/semicolon
Reading nginx conf is failed because of lack of semicolon at end of line
2 parents 2ee2d28 + 0ebabf8 commit 5720423

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

contrib/nginx/nginx.conf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,16 +36,16 @@ server {
3636
location / {
3737
auth_basic "Restricted";
3838
auth_basic_user_file docker-registry.htpasswd;
39-
include docker-registry.conf
39+
include docker-registry.conf;
4040
}
4141

4242
location /_ping {
4343
auth_basic off;
44-
include docker-registry.conf
44+
include docker-registry.conf;
4545
}
4646

4747
location /v1/_ping {
4848
auth_basic off;
49-
include docker-registry.conf
49+
include docker-registry.conf;
5050
}
5151
}

contrib/nginx/nginx_1-3-9.conf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,16 +30,16 @@ server {
3030
location / {
3131
auth_basic "Restricted";
3232
auth_basic_user_file docker-registry.htpasswd;
33-
include docker-registry.conf
33+
include docker-registry.conf;
3434
}
3535

3636
location /_ping {
3737
auth_basic off;
38-
include docker-registry.conf
38+
include docker-registry.conf;
3939
}
4040

4141
location /v1/_ping {
4242
auth_basic off;
43-
include docker-registry.conf
43+
include docker-registry.conf;
4444
}
4545
}

0 commit comments

Comments
 (0)