Compare commits

..

27 Commits

Author SHA1 Message Date
6ddea566f3 fix: separate systemctl restart and reenable commands
All checks were successful
Continuous Integration / lint_n_build (push) Successful in 21s
Continuous Delivery / build_n_upload (push) Successful in 22s
2026-03-08 16:45:36 +01:00
844e727b7d doc: update readme
All checks were successful
Continuous Integration / lint_n_build (push) Successful in 19s
Continuous Delivery / build_n_upload (push) Successful in 19s
2026-03-08 16:39:06 +01:00
7e59f820a3 feat: add csp data type
All checks were successful
Continuous Integration / lint_n_build (push) Successful in 21s
Continuous Delivery / build_n_upload (push) Successful in 22s
2026-03-08 16:08:13 +01:00
89e3d510df fix: rename nginx default file 2026-03-08 16:07:59 +01:00
99067e5ead ci: fix upload pkg command
All checks were successful
Continuous Integration / lint_n_build (push) Successful in 21s
Continuous Delivery / build_n_upload (push) Successful in 22s
2026-03-08 02:55:17 +01:00
16b36fe751 ci: typo depth
Some checks failed
Continuous Integration / lint_n_build (push) Successful in 1m16s
Continuous Delivery / build_n_upload (push) Failing after 19s
2026-03-08 02:49:03 +01:00
781a21a209 ci: set depth 0
Some checks failed
Continuous Integration / lint_n_build (push) Failing after 13s
2026-03-08 02:45:49 +01:00
bb08a22ad5 ci: add .gitea folder
Some checks failed
Continuous Integration / lint_n_build (push) Failing after 1m11s
2026-03-08 02:43:22 +01:00
571a660b75 ci: come back to gitea 2026-03-08 01:40:06 +01:00
378a44a7a5 ci: trigger actions 2026-03-07 13:41:36 +01:00
786a340122 fix: runner label 2026-03-07 12:52:11 +01:00
dc894293b6 refactor: migrate to forgejo 2026-03-07 12:50:53 +01:00
995b60af81 doc: improve sections 2026-02-17 14:28:39 +01:00
b1f6a731a7 doc: add security notes section 2026-02-17 14:23:29 +01:00
60ff95c8f7 doc: remove cd badge 2026-02-17 14:17:23 +01:00
09d04cc063 doc: move badges
Some checks failed
Continuous Delivery / build_n_upload (push) Has been cancelled
2026-02-17 14:13:10 +01:00
e351eaea47 doc: fix badges 2026-02-17 14:12:00 +01:00
2c20d96e99 doc: improve readme 2026-02-17 14:03:52 +01:00
84e97fe190 ci: fetch depth 0
Some checks failed
Continuous Delivery / build_n_upload (push) Has been cancelled
2026-02-17 02:09:28 +01:00
d97626ffd2 ci: fetch tags 2026-02-17 02:08:15 +01:00
5c57534ab9 ci: fix shellcheck target 2026-02-17 02:04:42 +01:00
051c806332 ci: fix shellcheck targets 2026-02-17 02:02:59 +01:00
34279dd21c ci: add shellcheck targets 2026-02-17 02:01:57 +01:00
6b5679e3fe ci: remove systemdlint 2026-02-17 01:07:13 +01:00
82fd911427 ci: add rpm build 2026-02-17 00:15:48 +01:00
c2401ee8da ci: add ci workflow 2026-02-17 00:13:05 +01:00
4c0fbbfe97 ci: add git ref
Some checks failed
Continuous Integration / build (push) Has been cancelled
2026-02-15 01:10:12 +01:00
10 changed files with 179 additions and 36 deletions

View File

@@ -1,4 +1,4 @@
name: Continuous Integration name: Continuous Delivery
on: on:
push: push:
@@ -6,19 +6,15 @@ on:
- "v[0-9]+.[0-9]+.[0-9]+" - "v[0-9]+.[0-9]+.[0-9]+"
jobs: jobs:
build: build_n_upload:
runs-on: linux runs-on: self-hosted
steps: steps:
- name: Git checkout - uses: actions/checkout@v6
uses: actions/checkout@v6
with: with:
fetch-depth: 0
fetch-tags: true fetch-tags: true
- name: Build tarball - run: make tarball
run: make tarball - run: rpmbuild -ba "$(make name).spec"
- name: Build rpm package - run: make upload
run: rpmbuild -ba "$(make name).spec"
- name: Upload rpm package
run: make upload
env: env:
PACKAGES_USERNAME: ${{ vars.PACKAGES_USERNAME }} PKG_TOKEN: ${{ secrets.PKG_TOKEN }}
PACKAGES_TOKEN: ${{ secrets.PACKAGES_TOKEN }}

18
.gitea/workflows/ci.yaml Normal file
View File

@@ -0,0 +1,18 @@
name: Continuous Integration
on:
push:
branches:
- main
jobs:
lint_n_build:
runs-on: self-hosted
steps:
- uses: actions/checkout@v6
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
View File

@@ -1,2 +1,3 @@
*.swp *.swp
*.env *.env
/.idea

View File

@@ -1,16 +1,21 @@
NAME = netoik-rp NAME = netoik-rp
VERSION = $(shell git describe --always --tags --abbrev=0) VERSION = $(shell git describe --abbrev=0)
RELEASE = $(shell git rev-parse --short HEAD) RELEASE = $(shell git rev-parse --short HEAD)
BRANCH = $(shell git branch --show-current) ARCH = noarch
BUILD_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_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_BUILD_PATH = $(RPM_RPMDIR)/$(BUILD_ARCH)/$(NAME)-$(VERSION)-$(RELEASE).$(BUILD_ARCH).rpm RPM_TARBALL_PATH = $(RPM_SOURCEDIR)/$(SOURCE0)
RPM_BUILD_PATH = $(RPM_RPMDIR)/$(ARCH)/$(NAME)-$(VERSION)-$(RELEASE).$(ARCH).rpm
.PHONY: name .PHONY: name
name: name:
@@ -24,14 +29,34 @@ version:
release: release:
@echo "$(RELEASE)" @echo "$(RELEASE)"
.PHONY: build_arch .PHONY: arch
build_arch: arch:
@echo "$(BUILD_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:
install --directory $(DESTDIR)$(RPM_SYSCONFDIR)/nginx/conf.d $(DESTDIR)$(RPM_SYSCONFDIR)/certbot $(DESTDIR)$(RPM_UNITDIR) $(DESTDIR)$(RPM_SBINDIR) 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 --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=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
@@ -41,11 +66,11 @@ $(RPM_TARBALL_PATH): *
--output="$@" \ --output="$@" \
--prefix="$(NAME)-$(VERSION)/" \ --prefix="$(NAME)-$(VERSION)/" \
--verbose \ --verbose \
"$(BRANCH)" HEAD
.PHONY: tarball .PHONY: tarball
tarball: $(RPM_TARBALL_PATH) tarball: $(RPM_TARBALL_PATH)
.PHONY: upload .PHONY: upload
upload: upload:
curl --fail-with-body --upload-file "$(RPM_BUILD_PATH)" --user "$(PACKAGES_USERNAME):$(PACKAGES_TOKEN)" https://git.netoik.io/api/packages/samuel/rpm/upload curl --fail-with-body --upload-file "$(RPM_BUILD_PATH)" --user "$(OWNER):$(PKG_TOKEN)" https://git.netoik.io/api/packages/$(OWNER)/rpm/upload

106
README.md
View File

@@ -1,3 +1,105 @@
# netoik-rp # Netoïk reverse proxy ![badge](https://git.netoik.io/samuel/netoik-rp/actions/workflows/ci.yaml/badge.svg)
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
- 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
```
- Show available versions:
```shell
dnf --showduplicates netoik-rp
```
- Create certbot ovh credentials here:
[www.ovh.com/auth/api/createToken](https://www.ovh.com/auth/api/createToken)
- Setup environemnt file (fill values):
```shell
cat > ~/.netoik-rp.env << EOF
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
```
# 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`

View File

@@ -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"

View File

@@ -22,7 +22,7 @@ add_header X-XSS-Protection "1;mode=block"
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;

View File

@@ -1,5 +1,5 @@
#!/usr/bin/env bash #!/usr/bin/env bash
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
certbot renew --cert-name netoik.io certbot renew --cert-name netoik.io

View File

@@ -3,12 +3,12 @@
Name: %(make name) Name: %(make name)
Version: %(make version) Version: %(make version)
Release: %(make release) 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: %(make build_arch) 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
@@ -50,7 +50,8 @@ 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
@@ -62,7 +63,7 @@ fi
%files %files
%attr(644, root, root) %{_sysconfdir}/nginx/conf.d/0_security.conf %attr(644, root, root) %{_sysconfdir}/nginx/conf.d/0_security.conf
%attr(644, root, root) %{_sysconfdir}/nginx/conf.d/default.conf %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