vault backup: 2024-05-19 09:57:54

This commit is contained in:
zleyyij 2024-05-19 09:57:54 -06:00
parent c69b591fcd
commit 4afff06c5d

View File

@ -26,4 +26,8 @@ When trying to start with that change applied, I got the error:
nginx: [emerg] bind() to 0.0.0.0:443 failed (98: Address already in use) nginx: [emerg] bind() to 0.0.0.0:443 failed (98: Address already in use)
``` ```
## IP Aliasing ## IP Aliasing
Hoping in vain that nginx would somehow be able to request the provided IP from the DHCP server and listen to it with no other config, I modified the `listen` directive from `listen 443;` to `listen 192.168.0.8:443`. Hoping in vain that nginx would somehow be able to request the provided IP from the DHCP server and listen to it with no other config, I modified the `listen` directive from `listen 443;` to `listen 192.168.0.8:443;`. This resulted in the below error:
```
nginx: [emerg] bind() to 192.168.0.8:443 failed (99: Cannot assign requested address)
```