about summary refs log tree commit diff
path: root/users/glittershark/gws.fyi/Makefile
blob: cfe3dd277d2ee6813787c2a4192f12493609e460 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
.PHONY: deploy

deploy:
	@$(shell nix-build `git rev-parse --show-toplevel` -A 'users.glittershark."gws.fyi"' --no-out-link)

renew:
	@echo Renewing...
	@certbot renew \
		--manual \
		--preferred-challenges dns \
		--server https://acme-v02.api.letsencrypt.org/directory \
		--agree-tos \
		--work-dir $(shell pwd)/letsencrypt/work \
		--logs-dir $(shell pwd)/letsencrypt/logs \
		--config-dir $(shell pwd)/letsencrypt/config

backup:
	@tarsnap -cf $(shell uname -n)-letsencrypt-$(shell date +%Y-%m-%d_%H-%M-%S) \
		letsencrypt/

open:
	$$BROWSER "http://gws.fyi"