Compare commits
19 Commits
v0.1.52
...
2-1.30.4-1
| Author | SHA1 | Date | |
|---|---|---|---|
| c76193dcc5 | |||
| 72dea1d665 | |||
| 1a14fbb5f1 | |||
| 200dbf50fc | |||
| c17d1c49f1 | |||
| abb193a03c | |||
| d26a6e5ec8 | |||
| 3d50d99368 | |||
| 3a9d39de4c | |||
| d7d87e0162 | |||
| 48792673dc | |||
| d8b747e315 | |||
| 0c92b1072a | |||
| 37d6ea9e4a | |||
| 6ddea566f3 | |||
| 844e727b7d | |||
| 7e59f820a3 | |||
| 89e3d510df | |||
| 99067e5ead |
@@ -3,7 +3,7 @@ name: Continuous Delivery
|
|||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
tags:
|
tags:
|
||||||
- "v[0-9]+.[0-9]+.[0-9]+"
|
- "**"
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build_n_upload:
|
build_n_upload:
|
||||||
|
|||||||
100
Makefile
100
Makefile
@@ -1,12 +1,17 @@
|
|||||||
NAME = netoik-rp
|
NAME = netoik-rp
|
||||||
VERSION = $(shell git describe --abbrev=0)
|
TAG = $(shell git describe --abbrev=0)
|
||||||
RELEASE = $(shell git rev-parse --short HEAD)
|
TAG_SPLIT = $(subst -, ,$(TAG))
|
||||||
|
EPOCH = $(word 1,$(TAG_SPLIT))
|
||||||
|
VERSION = $(word 2,$(TAG_SPLIT))
|
||||||
|
RELEASE = $(word 3,$(TAG_SPLIT))
|
||||||
|
RELEASE_SPLIT = $(subst ., ,$(RELEASE))
|
||||||
|
RELEASE_NGINX = $(word 1,$(RELEASE_SPLIT)).$(word 3,$(RELEASE_SPLIT))
|
||||||
ARCH = noarch
|
ARCH = noarch
|
||||||
OWNER = samuel
|
OWNER = netoik
|
||||||
SUMMARY = "Netoïk Reverse Proxy"
|
SUMMARY = "Netoïk Reverse Proxy"
|
||||||
LICENSE = "MIT"
|
LICENSE = "MIT"
|
||||||
URL = "https://git.netoik.io/$(OWNER)/$(NAME)"
|
URL = "https://git.netoik.io/$(OWNER)/$(NAME)"
|
||||||
SOURCE0 = "$(NAME)-$(VERSION)-$(RELEASE).tar.gz"
|
SOURCE0 = "$(NAME)-$(EPOCH)-$(VERSION)-$(RELEASE).tar.gz"
|
||||||
|
|
||||||
RPM_RPMDIR = $(shell rpm --eval '%{_rpmdir}')
|
RPM_RPMDIR = $(shell rpm --eval '%{_rpmdir}')
|
||||||
RPM_SBINDIR = $(shell rpm --eval '%{_sbindir}')
|
RPM_SBINDIR = $(shell rpm --eval '%{_sbindir}')
|
||||||
@@ -15,53 +20,62 @@ RPM_SYSCONFDIR = $(shell rpm --eval '%{_sysconfdir}')
|
|||||||
RPM_UNITDIR = $(shell rpm --eval '%{_unitdir}')
|
RPM_UNITDIR = $(shell rpm --eval '%{_unitdir}')
|
||||||
|
|
||||||
RPM_TARBALL_PATH = $(RPM_SOURCEDIR)/$(SOURCE0)
|
RPM_TARBALL_PATH = $(RPM_SOURCEDIR)/$(SOURCE0)
|
||||||
RPM_BUILD_PATH = $(RPM_RPMDIR)/$(BUILD_ARCH)/$(NAME)-$(VERSION)-$(RELEASE).$(ARCH).rpm
|
RPM_BUILD_PATH = $(RPM_RPMDIR)/$(ARCH)/$(NAME)-$(VERSION)-$(RELEASE).$(ARCH).rpm
|
||||||
|
|
||||||
|
.PHONY: help
|
||||||
|
help:
|
||||||
|
@grep -E '^[a-zA-Z0-9_-]+:.*?## .*' $(MAKEFILE_LIST) | \
|
||||||
|
awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
|
||||||
|
|
||||||
.PHONY: name
|
.PHONY: name
|
||||||
name:
|
name: ## Show project name
|
||||||
@echo "$(NAME)"
|
@echo "$(NAME)"
|
||||||
|
|
||||||
|
.PHONY: tag
|
||||||
|
tag: ## Show last tag
|
||||||
|
@echo "$(TAG)"
|
||||||
|
|
||||||
|
.PHONY: epoch
|
||||||
|
epoch: ## Show project epoch
|
||||||
|
@echo "$(EPOCH)"
|
||||||
|
|
||||||
.PHONY: version
|
.PHONY: version
|
||||||
version:
|
version: ## Show current project version
|
||||||
@echo "$(VERSION)"
|
@echo "$(VERSION)"
|
||||||
|
|
||||||
.PHONY: release
|
.PHONY: release
|
||||||
release:
|
release: ## Show current project release
|
||||||
@echo "$(RELEASE)"
|
@echo "$(RELEASE)"
|
||||||
|
|
||||||
|
.PHONY: release_nginx
|
||||||
|
release_nginx: ## Show nginx release
|
||||||
|
@echo "$(RELEASE_NGINX)"
|
||||||
|
|
||||||
.PHONY: arch
|
.PHONY: arch
|
||||||
arch:
|
arch: ## Show rpm arch target
|
||||||
@echo "$(ARCH)"
|
@echo "$(ARCH)"
|
||||||
|
|
||||||
.PHONY: owner
|
.PHONY: owner
|
||||||
owner:
|
owner: ## Show project owner name
|
||||||
@echo "$(OWNER)"
|
@echo "$(OWNER)"
|
||||||
|
|
||||||
.PHONY: summary
|
.PHONY: summary
|
||||||
summary:
|
summary: ## Show project summary
|
||||||
@echo "$(SUMMARY)"
|
@echo "$(SUMMARY)"
|
||||||
|
|
||||||
.PHONY: license
|
.PHONY: license
|
||||||
license:
|
license: ## Show project license
|
||||||
@echo "$(LICENSE)"
|
@echo "$(LICENSE)"
|
||||||
|
|
||||||
.PHONY: url
|
.PHONY: url
|
||||||
url:
|
url: ## Show project homepage URL
|
||||||
@echo "$(URL)"
|
@echo "$(URL)"
|
||||||
|
|
||||||
.PHONY: source0
|
.PHONY: source0
|
||||||
source0:
|
source0: ## Show rpm source0 file name
|
||||||
@echo "$(SOURCE0)"
|
@echo "$(SOURCE0)"
|
||||||
|
|
||||||
.PHONY: install
|
$(RPM_TARBALL_PATH):
|
||||||
install:
|
|
||||||
install --directory $(DESTDIR)$(RPM_SYSCONFDIR)/nginx/conf.d $(DESTDIR)$(RPM_SYSCONFDIR)/certbot $(DESTDIR)$(RPM_UNITDIR) $(DESTDIR)$(RPM_SBINDIR)
|
|
||||||
install --target-directory=$(DESTDIR)$(RPM_SYSCONFDIR)/nginx/conf.d files/nginx/0_security.conf files/nginx/default.conf
|
|
||||||
install --mode=600 --target-directory=$(DESTDIR)$(RPM_SYSCONFDIR)/certbot files/certbot/ovh.ini
|
|
||||||
install --mode=644 --target-directory=$(DESTDIR)$(RPM_UNITDIR) files/systemd/certbot-renew.service files/systemd/certbot-renew.timer
|
|
||||||
install --mode=755 --target-directory=$(DESTDIR)$(RPM_SBINDIR) files/sbin/certbot_renew
|
|
||||||
|
|
||||||
$(RPM_TARBALL_PATH): *
|
|
||||||
git archive --format=tar.gz \
|
git archive --format=tar.gz \
|
||||||
--output="$@" \
|
--output="$@" \
|
||||||
--prefix="$(NAME)-$(VERSION)/" \
|
--prefix="$(NAME)-$(VERSION)/" \
|
||||||
@@ -69,8 +83,42 @@ $(RPM_TARBALL_PATH): *
|
|||||||
HEAD
|
HEAD
|
||||||
|
|
||||||
.PHONY: tarball
|
.PHONY: tarball
|
||||||
tarball: $(RPM_TARBALL_PATH)
|
tarball: $(RPM_TARBALL_PATH) ## Build rpm tarball
|
||||||
|
|
||||||
|
.PHONY: install
|
||||||
|
install: ## Install files into rpm dest (requires env var DESTDIR)
|
||||||
|
@if [ -z "$(DESTDIR)" ]; then \
|
||||||
|
printf "[CRITICAL] Missing env var DESTDIR\n" 1>&2; \
|
||||||
|
printf "[CRITICAL] This command is designed to be called by rpmbuild only!\n" 1>&2; \
|
||||||
|
exit 1; \
|
||||||
|
fi
|
||||||
|
install --mode=755 \
|
||||||
|
--directory $(DESTDIR)$(RPM_SYSCONFDIR)/nginx/conf.d \
|
||||||
|
$(DESTDIR)$(RPM_SYSCONFDIR)/certbot \
|
||||||
|
$(DESTDIR)$(RPM_UNITDIR) \
|
||||||
|
$(DESTDIR)$(RPM_SBINDIR)
|
||||||
|
install --mode=644 \
|
||||||
|
--target-directory=$(DESTDIR)$(RPM_SYSCONFDIR)/nginx/conf.d \
|
||||||
|
files/nginx/0_security.conf files/nginx/z_default.conf
|
||||||
|
install --mode=600 \
|
||||||
|
--target-directory=$(DESTDIR)$(RPM_SYSCONFDIR)/certbot \
|
||||||
|
files/certbot/ovh.ini
|
||||||
|
install --mode=644 \
|
||||||
|
--target-directory=$(DESTDIR)$(RPM_UNITDIR) \
|
||||||
|
files/systemd/certbot-renew.service \
|
||||||
|
files/systemd/certbot-renew.timer
|
||||||
|
install --mode=755 \
|
||||||
|
--target-directory=$(DESTDIR)$(RPM_SBINDIR) \
|
||||||
|
files/sbin/certbot_renew
|
||||||
|
|
||||||
.PHONY: upload
|
.PHONY: upload
|
||||||
upload:
|
upload: ## Upload rpm package to Gitea repository (requires env var PKG_TOKEN)
|
||||||
curl --fail-with-body --upload-file "$(RPM_BUILD_PATH)" --user "$(OWNER):$(PKG_TOKEN)" https://git.netoik.io/api/packages/$(OWNER)/rpm/upload
|
@if [ -z "$(PKG_TOKEN)" ]; then \
|
||||||
|
printf "[CRITICAL] Missing env var PKG_TOKEN\n" 1>&2; \
|
||||||
|
printf "[CRITICAL]This command is designed to be called by Gitea Actions only!\n" 1>&2; \
|
||||||
|
exit 1; \
|
||||||
|
fi
|
||||||
|
curl --fail-with-body \
|
||||||
|
--upload-file "$(RPM_BUILD_PATH)" \
|
||||||
|
--user "$(OWNER):$(PKG_TOKEN)" \
|
||||||
|
https://git.netoik.io/api/packages/$(OWNER)/rpm/upload
|
||||||
|
|||||||
69
README.md
69
README.md
@@ -1,4 +1,4 @@
|
|||||||
# Netoïk reverse proxy 
|
# Netoïk reverse proxy 
|
||||||
|
|
||||||
Build an RPM package which will install several tools.
|
Build an RPM package which will install several tools.
|
||||||
|
|
||||||
@@ -11,33 +11,33 @@ Build an RPM package which will install several tools.
|
|||||||
- `Certbot` certificates with:
|
- `Certbot` certificates with:
|
||||||
- ovh configuration to renew certs
|
- ovh configuration to renew certs
|
||||||
- a command tool certbot_renew
|
- a command tool certbot_renew
|
||||||
- a systemctl certbot renew timer
|
- a systemctl Certbot renew timer
|
||||||
|
|
||||||
|
|
||||||
# Development
|
# Development
|
||||||
|
|
||||||
A `Makefile` is integrated to let you run some basic commands.
|
A `Makefile` is integrated to let you run some basic commands.
|
||||||
|
|
||||||
- To display some information about the project
|
- Display some information about the project
|
||||||
```shell
|
```shell
|
||||||
|
make help
|
||||||
make name
|
make name
|
||||||
make version
|
make version
|
||||||
make release
|
make release
|
||||||
make build_arch
|
make arch
|
||||||
```
|
```
|
||||||
|
|
||||||
- To build a tarball:
|
- Build a tarball:
|
||||||
```shell
|
```shell
|
||||||
make tarball
|
make tarball
|
||||||
```
|
```
|
||||||
|
|
||||||
- To build a rpm package:
|
- Build a rpm package:
|
||||||
```shell
|
```shell
|
||||||
rpmbuild -ba netoik-rp.spec
|
rpmbuild -ba netoik-rp.spec
|
||||||
```
|
```
|
||||||
|
|
||||||
- To upload rpm package to Gitea repository
|
- Upload rpm package to Gitea repository (env var `PKG_TOKEN` is required):
|
||||||
(env vars `GIT_PACKAGES_USERNAME` and `GIT_PACKAGES_TOKEN` needed):
|
|
||||||
```shell
|
```shell
|
||||||
make upload
|
make upload
|
||||||
```
|
```
|
||||||
@@ -48,36 +48,59 @@ A `Makefile` is integrated to let you run some basic commands.
|
|||||||
Two workflows are set up.
|
Two workflows are set up.
|
||||||
|
|
||||||
- Continuous Integration:
|
- Continuous Integration:
|
||||||
- triggered by each push on branch `main`
|
- triggered by each push event on branch `main`
|
||||||
- runs shellcheck on script `certbot_renew`
|
- runs shellcheck
|
||||||
- builds tarball and rpm package to test everything is OK
|
- builds tarball
|
||||||
|
- builds rpm package
|
||||||
|
|
||||||
- Continuous Delivery:
|
- Continuous Delivery:
|
||||||
- triggered by each tag pushed
|
- triggered by each tag push event
|
||||||
- builds tarball
|
- builds tarball
|
||||||
- builds and uploads rpm package to `Gitea` repository
|
- builds rpm package
|
||||||
|
- uploads rpm package to repository
|
||||||
|
|
||||||
|
|
||||||
# Deployment
|
# Deployment
|
||||||
|
|
||||||
Some commands to deploy the RPM package on server
|
Some commands to deploy the RPM package on server
|
||||||
|
|
||||||
- To add Gitea repo to your repo list:
|
- Add Gitea repo to your repo list:
|
||||||
```shell
|
```shell
|
||||||
dnf config-manager --add-repo https://git.netoik.io/api/packages/samuel/rpm.repo
|
dnf config-manager --add-repo https://git.netoik.io/api/packages/netoik/rpm.repo
|
||||||
dnf repolist | grep gitea-samuel
|
dnf repolist | grep gitea-samuel
|
||||||
```
|
```
|
||||||
|
|
||||||
- To show available versions:
|
- Show available versions:
|
||||||
```shell
|
```shell
|
||||||
dnf --showduplicates netoik-rp
|
dnf search --showduplicates netoik-rp
|
||||||
```
|
```
|
||||||
|
|
||||||
- To install or upgrade:
|
- Create Certbot ovh credentials here:
|
||||||
|
[www.ovh.com/auth/api/createToken](https://www.ovh.com/auth/api/createToken)
|
||||||
|
|
||||||
|
- Setup environment file (fill values):
|
||||||
```shell
|
```shell
|
||||||
dnf --nogpgcheck install netoik-rp
|
cat > ~/.netoik-rp.env << EOF
|
||||||
dnf --nogpgcheck upgrade netoik-rp
|
OVH_ENDPOINT=""
|
||||||
|
OVH_APPLICATION_NAME=""
|
||||||
|
OVH_APPLICATION_DESCRIPTION=""
|
||||||
|
OVH_APPLICATION_KEY=""
|
||||||
|
OVH_APPLICATION_SECRET=""
|
||||||
|
OVH_CONSUMER_KEY=""
|
||||||
|
EOF
|
||||||
|
```
|
||||||
|
|
||||||
|
- Install or upgrade package:
|
||||||
|
```shell
|
||||||
|
set -a
|
||||||
|
source ~/.netoik-rp.env
|
||||||
|
dnf --nogpgcheck --refresh --assumeyes --best install netoik-rp
|
||||||
|
set +a
|
||||||
|
```
|
||||||
|
|
||||||
|
- Install or upgrade without Certbot (for testing environment)
|
||||||
|
```shell
|
||||||
|
SKIP_CERTBOT=true dnf --nogpgcheck --refresh --assumeyes --best install netoik-rp
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
# OVH API credentials used by Certbot
|
# OVH API credentials used by Certbot
|
||||||
# To generate a new token, go to: https://www.ovh.com/auth/api/createToken
|
# To generate new credentials, go to: https://www.ovh.com/auth/api/createToken
|
||||||
|
|
||||||
dns_ovh_endpoint = "$OVH_ENDPOINT"
|
dns_ovh_endpoint = "$OVH_ENDPOINT"
|
||||||
dns_ovh_application_name = "$OVH_APPLICATION_NAME"
|
dns_ovh_application_name = "$OVH_APPLICATION_NAME"
|
||||||
|
|||||||
@@ -16,15 +16,15 @@ resolver 127.0.0.1;
|
|||||||
# see: https://cheatsheetseries.owasp.org/cheatsheets/HTTP_Headers_Cheat_Sheet.html
|
# see: https://cheatsheetseries.owasp.org/cheatsheets/HTTP_Headers_Cheat_Sheet.html
|
||||||
# And Nextcloud doc
|
# And Nextcloud doc
|
||||||
# see: https://docs.nextcloud.com/server/31/admin_manual/installation/harden_server.html
|
# see: https://docs.nextcloud.com/server/31/admin_manual/installation/harden_server.html
|
||||||
add_header Strict-Transport-Security "max-age=63072000; includeSubDomains; preload;" always;
|
add_header Strict-Transport-Security "max-age=63072000; includeSubDomains; preload;" always;
|
||||||
add_header X-Frame-Options "sameorigin" always;
|
add_header X-Frame-Options "sameorigin" always;
|
||||||
add_header X-XSS-Protection "1;mode=block" always;
|
add_header X-XSS-Protection "1;mode=block" always;
|
||||||
add_header X-Content-Type-Options "nosniff" always;
|
add_header X-Content-Type-Options "nosniff" always;
|
||||||
add_header X-Permitted-Cross-Domain-Policies "none" always;
|
add_header X-Permitted-Cross-Domain-Policies "none" always;
|
||||||
add_header Referrer-Policy "strict-origin-when-cross-origin" always;
|
add_header Referrer-Policy "strict-origin-when-cross-origin" always;
|
||||||
add_header Content-Security-Policy "default-src 'self' 'unsafe-inline'; frame-ancestors 'self'; form-action 'self';" always;
|
add_header Content-Security-Policy "default-src 'self' 'unsafe-inline' data:; frame-ancestors 'self'; form-action 'self';" always;
|
||||||
add_header Cross-Origin-Opener-Policy "same-origin" always;
|
add_header Cross-Origin-Opener-Policy "same-origin" always;
|
||||||
add_header Cross-Origin-Resource-Policy "same-site" always;
|
add_header Cross-Origin-Resource-Policy "same-site" always;
|
||||||
add_header Permissions-Policy "geolocation=(), camera=(), microphone=()" always;
|
add_header Permissions-Policy "geolocation=(), camera=(), microphone=()" always;
|
||||||
add_header Server "webserver" always;
|
add_header Server "webserver" always;
|
||||||
add_header X-Robots-Tag "noindex, nofollow" always;
|
add_header X-Robots-Tag "noindex, nofollow" always;
|
||||||
|
|||||||
@@ -2,4 +2,4 @@
|
|||||||
Description=Renew certbot certificates
|
Description=Renew certbot certificates
|
||||||
|
|
||||||
[Service]
|
[Service]
|
||||||
ExecStart=certbot_renew
|
ExecStart=/usr/sbin/certbot_renew
|
||||||
|
|||||||
@@ -1,8 +1,10 @@
|
|||||||
%define debug_package %{nil}
|
%define debug_package %{nil}
|
||||||
|
|
||||||
Name: %(make name)
|
Name: %(make name)
|
||||||
|
Epoch: %(make epoch)
|
||||||
Version: %(make version)
|
Version: %(make version)
|
||||||
Release: %(make release)
|
Release: %(make release)
|
||||||
|
|
||||||
Summary: %(make summary)
|
Summary: %(make summary)
|
||||||
License: %(make license)
|
License: %(make license)
|
||||||
URL: %(make url)
|
URL: %(make url)
|
||||||
@@ -10,7 +12,13 @@ URL: %(make url)
|
|||||||
Source0: %(make source0)
|
Source0: %(make source0)
|
||||||
Buildarch: %(make arch)
|
Buildarch: %(make arch)
|
||||||
BuildRequires: make
|
BuildRequires: make
|
||||||
Requires: nginx python3 python-devel (augeas-devel or augeas-libs) gcc openssl
|
|
||||||
|
Requires: nginx = %{epoch}:%{version}-%(make release_nginx)
|
||||||
|
Requires: python3
|
||||||
|
Requires: python-devel
|
||||||
|
Requires: (augeas-devel or augeas-libs)
|
||||||
|
Requires: gcc
|
||||||
|
Requires: openssl
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Install the reverse proxy called nginx with a predefined configuration and with TLS certificates attached to netoik.io
|
Install the reverse proxy called nginx with a predefined configuration and with TLS certificates attached to netoik.io
|
||||||
@@ -22,25 +30,47 @@ Install the reverse proxy called nginx with a predefined configuration and with
|
|||||||
%make_install
|
%make_install
|
||||||
|
|
||||||
%post
|
%post
|
||||||
# Replace secrets in ovh.ini
|
if [ -z $SKIP_CERTBOT ]; then
|
||||||
envsubst < %{_sysconfdir}/certbot/ovh.ini > %{_sysconfdir}/certbot/.ovh.ini.new
|
# Check required OVH variables
|
||||||
if cmp --silent %{_sysconfdir}/certbot/.ovh.ini.new %{_sysconfdir}/certbot/ovh.ini; then
|
if [ -z $OVH_ENDPOINT ]; then echo "Missing env var OVH_ENDPOINT!" 1>&2; exit 1; fi
|
||||||
rm %{_sysconfdir}/certbot/.ovh.ini.new
|
if [ -z $OVH_APPLICATION_NAME ]; then echo "Missing env var OVH_APPLICATION_KEY!" 1>&2; exit 1; fi
|
||||||
else
|
if [ -z $OVH_APPLICATION_DESCRIPTION ]; then echo "Missing env var OVH_APPLICATION_DESCRIPTION!" 1>&2; exit 1; fi
|
||||||
|
if [ -z $OVH_APPLICATION_KEY ]; then echo "Missing env var OVH_APPLICATION_KEY!" 1>&2; exit 1; fi
|
||||||
|
if [ -z $OVH_APPLICATION_SECRET ]; then echo "Missing env var OVH_APPLICATION_SECRET!" 1>&2; exit 1; fi
|
||||||
|
if [ -z $OVH_CONSUMER_KEY ]; then echo "Missing env var OVH_CONSUMER_KEY!" 1>&2; exit 1; fi
|
||||||
|
|
||||||
|
# Replace secrets in ovh.ini
|
||||||
|
envsubst < %{_sysconfdir}/certbot/ovh.ini > %{_sysconfdir}/certbot/.ovh.ini.new
|
||||||
mv %{_sysconfdir}/certbot/.ovh.ini.new %{_sysconfdir}/certbot/ovh.ini
|
mv %{_sysconfdir}/certbot/.ovh.ini.new %{_sysconfdir}/certbot/ovh.ini
|
||||||
chmod 600 %{_sysconfdir}/certbot/ovh.ini
|
chmod 600 %{_sysconfdir}/certbot/ovh.ini
|
||||||
fi
|
|
||||||
|
|
||||||
# Create virtualenv with certot
|
# Create virtualenv with certot
|
||||||
if [ ! -d "/opt/certbot" ]; then
|
if [ ! -d "/opt/certbot" ]; then
|
||||||
python3 -m venv /opt/certbot
|
python3 -m venv /opt/certbot
|
||||||
/opt/certbot/bin/pip install --upgrade pip certbot certbot-nginx certbot-dns-ovh
|
/opt/certbot/bin/pip install --upgrade pip certbot certbot-nginx certbot-dns-ovh
|
||||||
ln --symbolic --force --target-directory %{_sbindir} /opt/certbot/bin/certbot
|
ln --symbolic --force --target-directory %{_sbindir} /opt/certbot/bin/certbot
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Create certbot certificates
|
# Create certbot certificates
|
||||||
if ! certbot certificates --cert-name netoik.io | grep --quiet netoik.io; then
|
if ! certbot certificates --cert-name netoik.io | grep --quiet netoik.io; then
|
||||||
certbot certonly --cert-name netoik.io --non-interactive --agree-tos --email samuel.campos@netoik.io --dns-ovh --dns-ovh-credentials %{_sysconfdir}/certbot/ovh.ini -d *.netoik.io -d *.samuel-campos.fr
|
certbot certonly --cert-name netoik.io \
|
||||||
|
--non-interactive \
|
||||||
|
--agree-tos \
|
||||||
|
--email samuel.campos@netoik.io \
|
||||||
|
--dns-ovh --dns-ovh-credentials %{_sysconfdir}/certbot/ovh.ini \
|
||||||
|
-d *.netoik.io \
|
||||||
|
-d *.samuel-campos.fr
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
# Skipping certbot, so create self-signed certificate
|
||||||
|
mkdir --parents /etc/letsencrypt/live/netoik.io
|
||||||
|
openssl req -newkey rsa:4096 \
|
||||||
|
-nodes \
|
||||||
|
-keyout /etc/letsencrypt/live/netoik.io/privkey.pem \
|
||||||
|
-x509 \
|
||||||
|
-days 365 \
|
||||||
|
-out /etc/letsencrypt/live/netoik.io/fullchain.pem \
|
||||||
|
-subj "/C=US/ST=State/L=City/O=Organization/OU=Department/CN=netoik.io"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Create ssl dh params if not already exists
|
# Create ssl dh params if not already exists
|
||||||
@@ -50,19 +80,20 @@ fi
|
|||||||
|
|
||||||
# Restart services
|
# Restart services
|
||||||
systemctl daemon-reload
|
systemctl daemon-reload
|
||||||
systemctl reenable --now nginx.service certbot-renew.timer
|
systemctl reenable nginx.service certbot-renew.timer
|
||||||
|
systemctl restart nginx.service certbot-renew.timer
|
||||||
|
|
||||||
%postun
|
%postun
|
||||||
# Remove folders after uninstall
|
# Remove folders after uninstall
|
||||||
if [ $1 == 0 ]; then
|
if [ $1 == 0 ]; then
|
||||||
/opt/certbot/bin/certbot delete --cert-name netoik.io --non-interactive
|
/opt/certbot/bin/certbot delete --cert-name netoik.io --non-interactive
|
||||||
rm --recursive --force /opt/certbot
|
rm --recursive --force /opt/certbot
|
||||||
rm --recursive --force %{_sysconfdir}/certbot
|
rm --recursive --force %{_sysconfdir}/certbot
|
||||||
fi
|
fi
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%attr(644, root, root) %{_sysconfdir}/nginx/conf.d/0_security.conf
|
%config %attr(644, root, root) %{_sysconfdir}/nginx/conf.d/0_security.conf
|
||||||
%attr(644, root, root) %{_sysconfdir}/nginx/conf.d/default.conf
|
%config %attr(644, root, root) %{_sysconfdir}/nginx/conf.d/z_default.conf
|
||||||
|
|
||||||
%attr(755, root, root) %dir %{_sysconfdir}/certbot
|
%attr(755, root, root) %dir %{_sysconfdir}/certbot
|
||||||
%attr(600, root, root) %{_sysconfdir}/certbot/ovh.ini
|
%attr(600, root, root) %{_sysconfdir}/certbot/ovh.ini
|
||||||
|
|||||||
Reference in New Issue
Block a user