Skip to content
Snippets Groups Projects
Commit 588ddb98 authored by Paul's avatar Paul :turtle:
Browse files

init commit

parents
No related branches found
No related tags found
No related merge requests found
Showing
with 30 additions and 0 deletions
FROM nginx
COPY default.conf /etc/nginx/conf.d/default.conf
COPY images/ /usr/share/nginx/html/
RUN nginx -t
server {
listen 80 default_server;
listen [::]:80 default_server;
client_max_body_size 4G;
server_name icebox.nobreakspace.org;
keepalive_timeout 10;
root /usr/share/nginx/html;
# error page
error_page 404 = /notfound.png;
try_files
$uri
$uri.png
$uri.jpg
$uri.jpeg
=404;
# default index page
location ^/$ {
return 302 http://icebox.nobreakspace.org/;
}
}
images/15.png

153 KiB

images/29041565.png

114 KiB

images/4001228512777.png

68.7 KiB

images/4001228512791.png

75.3 KiB

images/4001686301265.png

251 KiB

images/4001686372548.png

155 KiB

images/4002846034504.png

64.3 KiB

images/4002846034559.png

77.1 KiB

images/4002846034603.png

80.6 KiB

images/4005009105240.png

97.7 KiB

images/4005500330318.png

224 KiB

images/4014472002512.png

81.2 KiB

images/4021155122887.png

131 KiB

images/4023216000110.png

60 KiB

images/4027109007309.png

80.7 KiB

images/4027109007880.png

73.5 KiB

images/4027109007897.png

71.3 KiB

images/4029764001807.png

72.1 KiB

0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment