1
1
Fork 0

deployable with docker

This commit is contained in:
Ava Gaiety W 2025-03-07 11:51:55 -07:00
parent 21778327a7
commit 8d701ebea2
22 changed files with 38 additions and 1 deletions

5
Dockerfile Normal file
View 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

View file

@ -1,3 +1,13 @@
# 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
View 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;
}
}

View file

Before

Width:  |  Height:  |  Size: 91 KiB

After

Width:  |  Height:  |  Size: 91 KiB

View file

Before

Width:  |  Height:  |  Size: 509 KiB

After

Width:  |  Height:  |  Size: 509 KiB

View file

Before

Width:  |  Height:  |  Size: 81 KiB

After

Width:  |  Height:  |  Size: 81 KiB

View file

Before

Width:  |  Height:  |  Size: 980 B

After

Width:  |  Height:  |  Size: 980 B

View file

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

View file

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

View file

Before

Width:  |  Height:  |  Size: 743 B

After

Width:  |  Height:  |  Size: 743 B

View file

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

View file

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View file

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View file

Before

Width:  |  Height:  |  Size: 2.2 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB

View file

Before

Width:  |  Height:  |  Size: 274 B

After

Width:  |  Height:  |  Size: 274 B

View file

Before

Width:  |  Height:  |  Size: 672 KiB

After

Width:  |  Height:  |  Size: 672 KiB

View file

Before

Width:  |  Height:  |  Size: 117 KiB

After

Width:  |  Height:  |  Size: 117 KiB