deployable with docker
5
Dockerfile
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
# serve static files with local nginx config
|
||||||
|
FROM nginx:alpine
|
||||||
|
WORKDIR /app
|
||||||
|
COPY . /site
|
||||||
|
COPY ./nginx.conf /etc/nginx/nginx.conf
|
10
README.md
|
@ -1,3 +1,13 @@
|
||||||
# linkery
|
# linkery
|
||||||
|
|
||||||
linktree alternative
|
linktree alternative
|
||||||
|
|
||||||
|
yep it's basic as hell, it doesn't even compile. it's just a html site paw-coded. enjoy.
|
||||||
|
|
||||||
|
## Deploy steps
|
||||||
|
|
||||||
|
Requires Docker
|
||||||
|
|
||||||
|
```sh
|
||||||
|
docker compose up --build -d
|
||||||
|
```
|
||||||
|
|
22
nginx.conf
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
events {
|
||||||
|
worker_connections 1024;
|
||||||
|
}
|
||||||
|
|
||||||
|
http {
|
||||||
|
include mime.types;
|
||||||
|
sendfile on;
|
||||||
|
|
||||||
|
server {
|
||||||
|
listen 8040;
|
||||||
|
listen [::]:8040;
|
||||||
|
|
||||||
|
resolver 127.0.0.11;
|
||||||
|
autoindex off;
|
||||||
|
|
||||||
|
server_name _;
|
||||||
|
server_tokens off;
|
||||||
|
|
||||||
|
root /app;
|
||||||
|
gzip_static on;
|
||||||
|
}
|
||||||
|
}
|
Before Width: | Height: | Size: 91 KiB After Width: | Height: | Size: 91 KiB |
Before Width: | Height: | Size: 509 KiB After Width: | Height: | Size: 509 KiB |
Before Width: | Height: | Size: 81 KiB After Width: | Height: | Size: 81 KiB |
Before Width: | Height: | Size: 980 B After Width: | Height: | Size: 980 B |
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 743 B After Width: | Height: | Size: 743 B |
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 274 B After Width: | Height: | Size: 274 B |
Before Width: | Height: | Size: 672 KiB After Width: | Height: | Size: 672 KiB |
Before Width: | Height: | Size: 117 KiB After Width: | Height: | Size: 117 KiB |