~dricottone/container-images

container-images/nginx/errorpages.conf -rw-r--r-- 612 bytes
e61b929eDominic Ricottone Okay now really things are updated a month ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
error_page 403 /403.html;
location = /403.html {
	root /etc/nginx/conf.d/error_pages.d;
	internal;
}

error_page 404 /404.html;
location = /404.html {
	root /etc/nginx/conf.d/error_pages.d;
	internal;
}

error_page 500 /500.html;
location = /500.html {
	root /etc/nginx/conf.d/error_pages.d;
	internal;
}

error_page 502 /502.html;
location = /502.html {
	root /etc/nginx/conf.d/error_pages.d;
	internal;
}

error_page 503 /503.html;
location = /503.html {
	root /etc/nginx/conf.d/error_pages.d;
	internal;
}

error_page 504 /504.html;
location = /504.html {
	root /etc/nginx/conf.d/error_pages.d;
	internal;
}