add dockerfile with nginx

This commit is contained in:
2024-08-25 21:11:56 +07:00
parent dd22e8e29e
commit 5eb58cb3e2
3 changed files with 18 additions and 1 deletions

9
Dockerfile Normal file
View File

@@ -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

View File

@@ -14,7 +14,7 @@
<!-- Page Information
-->
<meta charset="utf-8">
<title>DanNecron LittleLink</title>
<title>Dannecron LittleLink</title>
<meta name="description" content="https://littlelink.io">
<meta name="author" content="Seth Cottle">

View File

@@ -0,0 +1,8 @@
server {
listen 80;
location / {
root /opt/litterlink;
index index.html;
}
}