diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..acea170 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,9 @@ +ARG NGINX_VERSION=1.27.1 + +FROM nginx:${NGINX_VERSION}-alpine + +COPY css /opt/litterlink/css +COPY fonts /opt/litterlink/fonts +COPY images /opt/litterlink/images +COPY templates /etc/nginx/templates +COPY index.html /opt/litterlink/index.html diff --git a/index.html b/index.html index 697bee4..6ffd487 100644 --- a/index.html +++ b/index.html @@ -14,7 +14,7 @@ - DanNecron LittleLink + Dannecron LittleLink diff --git a/templates/default.conf.template b/templates/default.conf.template new file mode 100644 index 0000000..0a972b7 --- /dev/null +++ b/templates/default.conf.template @@ -0,0 +1,8 @@ +server { + listen 80; + + location / { + root /opt/litterlink; + index index.html; + } +}