Compare commits
41 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 99067e5ead | |||
| 16b36fe751 | |||
| 781a21a209 | |||
| bb08a22ad5 | |||
| 571a660b75 | |||
| 378a44a7a5 | |||
| 786a340122 | |||
| dc894293b6 | |||
| 995b60af81 | |||
| b1f6a731a7 | |||
| 60ff95c8f7 | |||
| 09d04cc063 | |||
| e351eaea47 | |||
| 2c20d96e99 | |||
| 84e97fe190 | |||
| d97626ffd2 | |||
| 5c57534ab9 | |||
| 051c806332 | |||
| 34279dd21c | |||
| 6b5679e3fe | |||
| 82fd911427 | |||
| c2401ee8da | |||
| 4c0fbbfe97 | |||
| 0bc8c67e92 | |||
| 39e1037020 | |||
| 1f566cf8bf | |||
| 2046dd0983 | |||
| f788c3a132 | |||
| 9c20ba929a | |||
| 4b2c9268d9 | |||
| e1e84909f9 | |||
| 784cef2c74 | |||
| 568dd00554 | |||
| f5480a12dc | |||
| 3363c3725d | |||
| 69d5b8aeae | |||
| 26c809f746 | |||
| eb1cefe72e | |||
| f3c441db2b | |||
| f575c4f0d9 | |||
| 32f20d5443 |
20
.gitea/workflows/cd.yaml
Normal file
20
.gitea/workflows/cd.yaml
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
name: Continuous Delivery
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
tags:
|
||||||
|
- "v[0-9]+.[0-9]+.[0-9]+"
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build_n_upload:
|
||||||
|
runs-on: self-hosted
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v6
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
fetch-tags: true
|
||||||
|
- run: make tarball
|
||||||
|
- run: rpmbuild -ba "$(make name).spec"
|
||||||
|
- run: make upload
|
||||||
|
env:
|
||||||
|
PKG_TOKEN: ${{ secrets.PKG_TOKEN }}
|
||||||
@@ -6,8 +6,13 @@ on:
|
|||||||
- main
|
- main
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
env:
|
lint_n_build:
|
||||||
runs-on: linux
|
runs-on: self-hosted
|
||||||
steps:
|
steps:
|
||||||
- name: Show env
|
- uses: actions/checkout@v6
|
||||||
run: env | sort
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
fetch-tags: true
|
||||||
|
- run: shellcheck files/sbin/certbot_renew
|
||||||
|
- run: make tarball
|
||||||
|
- run: rpmbuild -ba "$(make name).spec"
|
||||||
|
|||||||
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1,2 +1,3 @@
|
|||||||
*.swp
|
*.swp
|
||||||
*.env
|
*.env
|
||||||
|
/.idea
|
||||||
|
|||||||
65
Makefile
65
Makefile
@@ -1,12 +1,21 @@
|
|||||||
NAME = $(shell basename $(PWD))
|
NAME = netoik-rp
|
||||||
VERSION = $(shell git describe | sed 's/-/./g')
|
VERSION = $(shell git describe --abbrev=0)
|
||||||
BRANCH = $(shell git branch --show-current)
|
RELEASE = $(shell git rev-parse --short HEAD)
|
||||||
|
ARCH = noarch
|
||||||
|
OWNER = samuel
|
||||||
|
SUMMARY = "Netoïk Reverse Proxy"
|
||||||
|
LICENSE = "MIT"
|
||||||
|
URL = "https://git.netoik.io/$(OWNER)/$(NAME)"
|
||||||
|
SOURCE0 = "$(NAME)-$(VERSION)-$(RELEASE).tar.gz"
|
||||||
|
|
||||||
|
RPM_RPMDIR = $(shell rpm --eval '%{_rpmdir}')
|
||||||
RPM_SBINDIR = $(shell rpm --eval '%{_sbindir}')
|
RPM_SBINDIR = $(shell rpm --eval '%{_sbindir}')
|
||||||
RPM_SOURCEDIR = $(shell rpm --eval '%{_sourcedir}')
|
RPM_SOURCEDIR = $(shell rpm --eval '%{_sourcedir}')
|
||||||
RPM_SYSCONFDIR = $(shell rpm --eval '%{_sysconfdir}')
|
RPM_SYSCONFDIR = $(shell rpm --eval '%{_sysconfdir}')
|
||||||
RPM_UNITDIR = $(shell rpm --eval '%{_unitdir}')
|
RPM_UNITDIR = $(shell rpm --eval '%{_unitdir}')
|
||||||
RPM_TARBALL_PATH = $(RPM_SOURCEDIR)/$(NAME)-$(VERSION).tar.gz
|
|
||||||
|
RPM_TARBALL_PATH = $(RPM_SOURCEDIR)/$(SOURCE0)
|
||||||
|
RPM_BUILD_PATH = $(RPM_RPMDIR)/$(ARCH)/$(NAME)-$(VERSION)-$(RELEASE).$(ARCH).rpm
|
||||||
|
|
||||||
.PHONY: name
|
.PHONY: name
|
||||||
name:
|
name:
|
||||||
@@ -16,15 +25,33 @@ name:
|
|||||||
version:
|
version:
|
||||||
@echo "$(VERSION)"
|
@echo "$(VERSION)"
|
||||||
|
|
||||||
$(RPM_TARBALL_PATH): *
|
.PHONY: release
|
||||||
git archive --format=tar.gz \
|
release:
|
||||||
--output="$@" \
|
@echo "$(RELEASE)"
|
||||||
--prefix="$(NAME)-$(VERSION)/" \
|
|
||||||
--verbose \
|
|
||||||
"$(BRANCH)"
|
|
||||||
|
|
||||||
.PHONY: tarball
|
.PHONY: arch
|
||||||
tarball: $(RPM_TARBALL_PATH)
|
arch:
|
||||||
|
@echo "$(ARCH)"
|
||||||
|
|
||||||
|
.PHONY: owner
|
||||||
|
owner:
|
||||||
|
@echo "$(OWNER)"
|
||||||
|
|
||||||
|
.PHONY: summary
|
||||||
|
summary:
|
||||||
|
@echo "$(SUMMARY)"
|
||||||
|
|
||||||
|
.PHONY: license
|
||||||
|
license:
|
||||||
|
@echo "$(LICENSE)"
|
||||||
|
|
||||||
|
.PHONY: url
|
||||||
|
url:
|
||||||
|
@echo "$(URL)"
|
||||||
|
|
||||||
|
.PHONY: source0
|
||||||
|
source0:
|
||||||
|
@echo "$(SOURCE0)"
|
||||||
|
|
||||||
.PHONY: install
|
.PHONY: install
|
||||||
install:
|
install:
|
||||||
@@ -33,3 +60,17 @@ install:
|
|||||||
install --mode=600 --target-directory=$(DESTDIR)$(RPM_SYSCONFDIR)/certbot files/certbot/ovh.ini
|
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=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
|
install --mode=755 --target-directory=$(DESTDIR)$(RPM_SBINDIR) files/sbin/certbot_renew
|
||||||
|
|
||||||
|
$(RPM_TARBALL_PATH): *
|
||||||
|
git archive --format=tar.gz \
|
||||||
|
--output="$@" \
|
||||||
|
--prefix="$(NAME)-$(VERSION)/" \
|
||||||
|
--verbose \
|
||||||
|
HEAD
|
||||||
|
|
||||||
|
.PHONY: tarball
|
||||||
|
tarball: $(RPM_TARBALL_PATH)
|
||||||
|
|
||||||
|
.PHONY: upload
|
||||||
|
upload:
|
||||||
|
curl --fail-with-body --upload-file "$(RPM_BUILD_PATH)" --user "$(OWNER):$(PKG_TOKEN)" https://git.netoik.io/api/packages/$(OWNER)/rpm/upload
|
||||||
|
|||||||
89
README.md
89
README.md
@@ -1,3 +1,88 @@
|
|||||||
# netoik-rp
|
# Netoïk reverse proxy 
|
||||||
|
|
||||||
Netoïk reverse proxy
|
Build an RPM package which will install several tools.
|
||||||
|
|
||||||
|
- `Nginx` with:
|
||||||
|
- ssl settings
|
||||||
|
- security headers
|
||||||
|
- default site configuration
|
||||||
|
|
||||||
|
|
||||||
|
- `Certbot` certificates with:
|
||||||
|
- ovh configuration to renew certs
|
||||||
|
- a command tool certbot_renew
|
||||||
|
- a systemctl certbot renew timer
|
||||||
|
|
||||||
|
|
||||||
|
# Development
|
||||||
|
|
||||||
|
A `Makefile` is integrated to let you run some basic commands.
|
||||||
|
|
||||||
|
- To display some information about the project
|
||||||
|
```shell
|
||||||
|
make name
|
||||||
|
make version
|
||||||
|
make release
|
||||||
|
make build_arch
|
||||||
|
```
|
||||||
|
|
||||||
|
- To build a tarball:
|
||||||
|
```shell
|
||||||
|
make tarball
|
||||||
|
```
|
||||||
|
|
||||||
|
- To build a rpm package:
|
||||||
|
```shell
|
||||||
|
rpmbuild -ba netoik-rp.spec
|
||||||
|
```
|
||||||
|
|
||||||
|
- To upload rpm package to Gitea repository
|
||||||
|
(env vars `GIT_PACKAGES_USERNAME` and `GIT_PACKAGES_TOKEN` needed):
|
||||||
|
```shell
|
||||||
|
make upload
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
# CI / CD
|
||||||
|
|
||||||
|
Two workflows are set up.
|
||||||
|
|
||||||
|
- Continuous Integration:
|
||||||
|
- triggered by each push on branch `main`
|
||||||
|
- runs shellcheck on script `certbot_renew`
|
||||||
|
- builds tarball and rpm package to test everything is OK
|
||||||
|
|
||||||
|
|
||||||
|
- Continuous Delivery:
|
||||||
|
- triggered by each tag pushed
|
||||||
|
- builds tarball
|
||||||
|
- builds and uploads rpm package to `Gitea` repository
|
||||||
|
|
||||||
|
|
||||||
|
# Deployment
|
||||||
|
|
||||||
|
Some commands to deploy the RPM package on server
|
||||||
|
|
||||||
|
- To add Gitea repo to your repo list:
|
||||||
|
```shell
|
||||||
|
dnf config-manager --add-repo https://git.netoik.io/api/packages/samuel/rpm.repo
|
||||||
|
dnf repolist | grep gitea-samuel
|
||||||
|
```
|
||||||
|
|
||||||
|
- To show available versions:
|
||||||
|
```shell
|
||||||
|
dnf --showduplicates netoik-rp
|
||||||
|
```
|
||||||
|
|
||||||
|
- To install or upgrade:
|
||||||
|
```shell
|
||||||
|
dnf --nogpgcheck install netoik-rp
|
||||||
|
dnf --nogpgcheck upgrade netoik-rp
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
# Security Notes
|
||||||
|
|
||||||
|
For security reasons, act runners does not have sudo privileges and so there is:
|
||||||
|
- **no** Continuous Deployment because act runners cannot use `dnf`
|
||||||
|
- **no** GPG signing because act runners cannot use `gpg`
|
||||||
|
|||||||
@@ -14,12 +14,15 @@ resolver 127.0.0.1;
|
|||||||
|
|
||||||
# Add some basic security headers from OWASP
|
# Add some basic security headers from OWASP
|
||||||
# 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
|
||||||
|
# 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 "DENY" always;
|
add_header X-Frame-Options "sameorigin" always;
|
||||||
add_header X-XSS-Protection "0" 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 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'; frame-ancestors 'self'; form-action 'self';" always;
|
add_header Content-Security-Policy "default-src 'self' 'unsafe-inline'; 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;
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
/usr/bin/env sleep $(($RANDOM % 3600));
|
sleep $((RANDOM % 3600));
|
||||||
/opt/certbot/bin/pip install --upgrade certbot certbot-nginx certbot-dns-ovh
|
/opt/certbot/bin/pip install --upgrade certbot certbot-nginx certbot-dns-ovh
|
||||||
/usr/bin/env certbot renew --cert-name netoik.io
|
certbot renew --cert-name netoik.io
|
||||||
|
|||||||
@@ -2,13 +2,13 @@
|
|||||||
|
|
||||||
Name: %(make name)
|
Name: %(make name)
|
||||||
Version: %(make version)
|
Version: %(make version)
|
||||||
Release: 1%{?dist}
|
Release: %(make release)
|
||||||
Summary: Netoik Reverse Proxy
|
Summary: %(make summary)
|
||||||
License: MIT
|
License: %(make license)
|
||||||
URL: https://git.netoik.io/samuel/netoik-rp
|
URL: %(make url)
|
||||||
|
|
||||||
Source0: %{name}-%{version}.tar.gz
|
Source0: %(make source0)
|
||||||
Buildarch: noarch
|
Buildarch: %(make arch)
|
||||||
BuildRequires: make
|
BuildRequires: make
|
||||||
Requires: nginx python3 python-devel (augeas-devel or augeas-libs) gcc openssl
|
Requires: nginx python3 python-devel (augeas-devel or augeas-libs) gcc openssl
|
||||||
|
|
||||||
@@ -55,7 +55,7 @@ systemctl reenable --now 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
|
/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
|
||||||
|
|||||||
Reference in New Issue
Block a user