1
0
Fork 0
mirror of https://codeberg.org/Mo8it/How_To_Linux.git synced 2024-12-05 01:40:32 +00:00

Compare commits

...

2 commits

Author SHA1 Message Date
a1a483ffd8 Fix nums again 2022-08-25 14:45:38 +02:00
8a89e10152 Fix num 2022-08-25 14:43:53 +02:00

View file

@ -88,7 +88,7 @@ Place these two files:
```
server {
listen 80;
server_name nginx0.jinext.xyz;
server_name nginxN.jinext.xyz;
location / {
root /volumes/website;
@ -97,6 +97,8 @@ Place these two files:
}
```
Replace `N` also in `server_name`!
1. `~/nginxN/website/index.html` (replace `N`):
```
@ -119,8 +121,8 @@ Create a Nginx container with the following options:
- Timezone `tz`: `local`.
- Network: `traefik`.
- Volumes:
- `~/nginx0/website:/volumes/website` with labels `Z,ro`.
- `~/nginx0/conf:/etc/nginx/conf.d` with labels `Z,ro`.
- `~/nginxN/website:/volumes/website` with labels `Z,ro`.
- `~/nginxN/conf:/etc/nginx/conf.d` with labels `Z,ro`.
- Label: `io.containers.autoupdate=registry`
- Image: `docker.io/library/nginx:alpine`