feat: adapt on nginx versionning
This commit is contained in:
@@ -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:
|
||||||
|
|||||||
13
Makefile
13
Makefile
@@ -1,12 +1,13 @@
|
|||||||
NAME = netoik-rp
|
NAME = netoik-rp
|
||||||
VERSION = $(shell git describe --abbrev=0)
|
EPOCH = $(shell git describe --abbrev=0 | cut --delimiter=/ --fields=1)
|
||||||
RELEASE = $(shell git rev-parse --short HEAD)
|
VERSION = $(shell git describe --abbrev=0 | cut --delimiter=/ --fields=2 | cut --delimiter=- --fields=1)
|
||||||
|
RELEASE = $(shell git describe --abbrev=0 | cut --delimiter=/ --fields=2 | cut --delimiter=- --fields=2)
|
||||||
ARCH = noarch
|
ARCH = noarch
|
||||||
OWNER = netoik
|
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}')
|
||||||
@@ -25,6 +26,10 @@ help:
|
|||||||
name: ## Show project name
|
name: ## Show project name
|
||||||
@echo "$(NAME)"
|
@echo "$(NAME)"
|
||||||
|
|
||||||
|
.PHONY: epoch
|
||||||
|
epoch: ## Show project epoch
|
||||||
|
@echo "$(EPOCH)"
|
||||||
|
|
||||||
.PHONY: version
|
.PHONY: version
|
||||||
version: ## Show current project version
|
version: ## Show current project version
|
||||||
@echo "$(VERSION)"
|
@echo "$(VERSION)"
|
||||||
@@ -57,7 +62,7 @@ url: ## Show project homepage URL
|
|||||||
source0: ## Show rpm source0 file name
|
source0: ## Show rpm source0 file name
|
||||||
@echo "$(SOURCE0)"
|
@echo "$(SOURCE0)"
|
||||||
|
|
||||||
$(RPM_TARBALL_PATH): *
|
$(RPM_TARBALL_PATH):
|
||||||
git archive --format=tar.gz \
|
git archive --format=tar.gz \
|
||||||
--output="$@" \
|
--output="$@" \
|
||||||
--prefix="$(NAME)-$(VERSION)/" \
|
--prefix="$(NAME)-$(VERSION)/" \
|
||||||
|
|||||||
10
README.md
10
README.md
@@ -11,7 +11,7 @@ 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
|
||||||
@@ -32,7 +32,7 @@ A `Makefile` is integrated to let you run some basic commands.
|
|||||||
make tarball
|
make tarball
|
||||||
```
|
```
|
||||||
|
|
||||||
- Build an rpm package:
|
- Build a rpm package:
|
||||||
```shell
|
```shell
|
||||||
rpmbuild -ba netoik-rp.spec
|
rpmbuild -ba netoik-rp.spec
|
||||||
```
|
```
|
||||||
@@ -75,10 +75,10 @@ Some commands to deploy the RPM package on server
|
|||||||
dnf search --showduplicates netoik-rp
|
dnf search --showduplicates netoik-rp
|
||||||
```
|
```
|
||||||
|
|
||||||
- Create certbot ovh credentials here:
|
- Create Certbot ovh credentials here:
|
||||||
[www.ovh.com/auth/api/createToken](https://www.ovh.com/auth/api/createToken)
|
[www.ovh.com/auth/api/createToken](https://www.ovh.com/auth/api/createToken)
|
||||||
|
|
||||||
- Setup environemnt file (fill values):
|
- Setup environment file (fill values):
|
||||||
```shell
|
```shell
|
||||||
cat > ~/.netoik-rp.env << EOF
|
cat > ~/.netoik-rp.env << EOF
|
||||||
OVH_ENDPOINT=""
|
OVH_ENDPOINT=""
|
||||||
@@ -98,7 +98,7 @@ Some commands to deploy the RPM package on server
|
|||||||
set +a
|
set +a
|
||||||
```
|
```
|
||||||
|
|
||||||
- Install or upgrade without certbot (for testing environment)
|
- Install or upgrade without Certbot (for testing environment)
|
||||||
```shell
|
```shell
|
||||||
SKIP_CERTBOT=true dnf --nogpgcheck --refresh --assumeyes --best install netoik-rp
|
SKIP_CERTBOT=true dnf --nogpgcheck --refresh --assumeyes --best install netoik-rp
|
||||||
```
|
```
|
||||||
|
|||||||
@@ -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)%{?dist}
|
||||||
|
|
||||||
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}-%{release}
|
||||||
|
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
|
||||||
@@ -45,12 +53,24 @@ if [ -z $SKIP_CERTBOT ]; then
|
|||||||
|
|
||||||
# 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
|
fi
|
||||||
else
|
else
|
||||||
# Skipping certbot, so create self-signed certificate
|
# Skipping certbot, so create self-signed certificate
|
||||||
mkdir --parents /etc/letsencrypt/live/netoik.io
|
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"
|
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
|
||||||
@@ -72,8 +92,8 @@ if [ $1 == 0 ]; then
|
|||||||
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/z_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