Compare commits

...

2 Commits

Author SHA1 Message Date
kevinnlsamuel 645ec05164 It'd be nice if type errors caused the compiler to issue a type error
commit messages by http://whatthecommit.com
2026-09-02 14:38:27 +05:30
kevinnlsamuel 64922f2dc2 Working on tests (haha)
commit messages by http://whatthecommit.com
2026-09-02 14:36:19 +05:30
3 changed files with 13 additions and 2 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
.PHONY: setup-tls
DOMAIN ::= website.com
DOMAIN = website.com
setup-tls: tls/cert.pem
+11
View File
@@ -59,8 +59,19 @@ $ # ^ do that when you make changes to config
# what if sth doesn't work?
## using podman?
give the nginx (sub)user access to the tls directory
```console
$ podman unshare setfacl -Rmu:101:rX tls/
```
## using docker?
might be the `:z` label in the `volumes` in `docker-compose.yml`. remove it.
e.g.
```
- ./tls:/etc/nginx/tls:ro
```
## using macOS?
make is angry with you? you're on your own for this one. just read the commands and run them directly
+1 -1
View File
@@ -5,6 +5,6 @@ services:
- ./conf.d/:/etc/nginx/conf.d:ro,z
- ./tls:/etc/nginx/tls:ro,z
- ./www:/srv/www:ro,z
publish:
ports:
- 8443:443