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