Compare commits
23 Commits
v0.1.48
...
99067e5ead
| 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 |
@@ -1,4 +1,4 @@
|
||||
name: Continuous Integration
|
||||
name: Continuous Delivery
|
||||
|
||||
on:
|
||||
push:
|
||||
@@ -6,19 +6,15 @@ on:
|
||||
- "v[0-9]+.[0-9]+.[0-9]+"
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: linux
|
||||
build_n_upload:
|
||||
runs-on: self-hosted
|
||||
steps:
|
||||
- name: Git checkout
|
||||
uses: actions/checkout@v6
|
||||
- uses: actions/checkout@v6
|
||||
with:
|
||||
fetch-depth: 0
|
||||
fetch-tags: true
|
||||
- name: Build tarball
|
||||
run: make tarball
|
||||
- name: Build rpm package
|
||||
run: rpmbuild -ba "$(make name).spec"
|
||||
- name: Upload rpm package
|
||||
run: make upload
|
||||
- run: make tarball
|
||||
- run: rpmbuild -ba "$(make name).spec"
|
||||
- run: make upload
|
||||
env:
|
||||
PACKAGES_USERNAME: ${{ vars.PACKAGES_USERNAME }}
|
||||
PACKAGES_TOKEN: ${{ secrets.PACKAGES_TOKEN }}
|
||||
PKG_TOKEN: ${{ secrets.PKG_TOKEN }}
|
||||
|
||||
18
.gitea/workflows/ci.yaml
Normal file
18
.gitea/workflows/ci.yaml
Normal 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
1
.gitignore
vendored
@@ -1,2 +1,3 @@
|
||||
*.swp
|
||||
*.env
|
||||
/.idea
|
||||
|
||||
45
Makefile
45
Makefile
@@ -1,16 +1,21 @@
|
||||
NAME = netoik-rp
|
||||
VERSION = $(shell git describe --always --tags --abbrev=0)
|
||||
VERSION = $(shell git describe --abbrev=0)
|
||||
RELEASE = $(shell git rev-parse --short HEAD)
|
||||
BRANCH = $(shell git branch --show-current)
|
||||
BUILD_ARCH = noarch
|
||||
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_SOURCEDIR = $(shell rpm --eval '%{_sourcedir}')
|
||||
RPM_SYSCONFDIR = $(shell rpm --eval '%{_sysconfdir}')
|
||||
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
|
||||
name:
|
||||
@@ -24,9 +29,29 @@ version:
|
||||
release:
|
||||
@echo "$(RELEASE)"
|
||||
|
||||
.PHONY: build_arch
|
||||
build_arch:
|
||||
@echo "$(BUILD_ARCH)"
|
||||
.PHONY: arch
|
||||
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
|
||||
install:
|
||||
@@ -41,11 +66,11 @@ $(RPM_TARBALL_PATH): *
|
||||
--output="$@" \
|
||||
--prefix="$(NAME)-$(VERSION)/" \
|
||||
--verbose \
|
||||
"$(BRANCH)"
|
||||
HEAD
|
||||
|
||||
.PHONY: tarball
|
||||
tarball: $(RPM_TARBALL_PATH)
|
||||
|
||||
.PHONY: 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
|
||||
|
||||
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`
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
sleep $(($RANDOM % 3600));
|
||||
sleep $((RANDOM % 3600));
|
||||
/opt/certbot/bin/pip install --upgrade certbot certbot-nginx certbot-dns-ovh
|
||||
certbot renew --cert-name netoik.io
|
||||
|
||||
@@ -3,12 +3,12 @@
|
||||
Name: %(make name)
|
||||
Version: %(make version)
|
||||
Release: %(make release)
|
||||
Summary: Netoik Reverse Proxy
|
||||
License: MIT
|
||||
URL: https://git.netoik.io/samuel/netoik-rp
|
||||
Summary: %(make summary)
|
||||
License: %(make license)
|
||||
URL: %(make url)
|
||||
|
||||
Source0: %{name}-%{version}.tar.gz
|
||||
Buildarch: %(make build_arch)
|
||||
Source0: %(make source0)
|
||||
Buildarch: %(make arch)
|
||||
BuildRequires: make
|
||||
Requires: nginx python3 python-devel (augeas-devel or augeas-libs) gcc openssl
|
||||
|
||||
|
||||
Reference in New Issue
Block a user