2024-09-20 01:27:15 +03:00
|
|
|
# simple static site
|
|
|
|
|
2024-11-08 14:19:36 +03:00
|
|
|
consult [Dockerfile](Dockerfile) or [docker-compose.yml](docker-compose.yml) - both are simple and fine enough.
|
|
|
|
|
|
|
|
---
|
|
|
|
|
2024-09-20 01:27:15 +03:00
|
|
|
configuration:
|
|
|
|
|
|
|
|
```nginx
|
|
|
|
server {
|
|
|
|
listen 8080;
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2024-11-08 14:19:36 +03:00
|
|
|
simple as that! :)
|