2024-09-20 01:27:15 +03:00
|
|
|
# simple static site
|
|
|
|
|
|
|
|
configuration:
|
|
|
|
|
|
|
|
```nginx
|
|
|
|
server {
|
|
|
|
listen 8080;
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
Dockerfile:
|
|
|
|
|
|
|
|
```dockerfile
|
2024-10-10 00:23:55 +03:00
|
|
|
FROM docker.io/rockdrilla/angie-conv:v0.0.3
|
2024-09-20 01:27:15 +03:00
|
|
|
|
|
|
|
COPY /site/ /etc/angie/site/
|
|
|
|
COPY /static/ /etc/angie/static/
|
|
|
|
```
|
|
|
|
|
|
|
|
both are simple and fine enough.
|