mirror of
https://github.com/Dannecron/littlelink.git
synced 2025-12-26 00:22:35 +03:00
add dockerfile with nginx
This commit is contained in:
9
Dockerfile
Normal file
9
Dockerfile
Normal 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
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
<!-- Page Information
|
<!-- Page Information
|
||||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<title>DanNecron LittleLink</title>
|
<title>Dannecron LittleLink</title>
|
||||||
<meta name="description" content="https://littlelink.io">
|
<meta name="description" content="https://littlelink.io">
|
||||||
<meta name="author" content="Seth Cottle">
|
<meta name="author" content="Seth Cottle">
|
||||||
|
|
||||||
|
|||||||
8
templates/default.conf.template
Normal file
8
templates/default.conf.template
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
server {
|
||||||
|
listen 80;
|
||||||
|
|
||||||
|
location / {
|
||||||
|
root /opt/litterlink;
|
||||||
|
index index.html;
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user