Compare commits

...

19 Commits

Author SHA1 Message Date
4c0fbbfe97 ci: add git ref
Some checks failed
Continuous Integration / build (push) Has been cancelled
2026-02-15 01:10:12 +01:00
0bc8c67e92 ci: fix typo tag name
Some checks failed
Continuous Integration / build (push) Has been cancelled
2026-02-15 00:53:15 +01:00
39e1037020 ci: add cd 2026-02-15 00:49:00 +01:00
1f566cf8bf ci: try without username 2026-02-15 00:39:48 +01:00
2046dd0983 ci: try with github.token 2026-02-15 00:37:06 +01:00
f788c3a132 ci: add user and token 2026-02-15 00:08:14 +01:00
9c20ba929a ci: fix typo 2026-02-14 22:58:06 +01:00
4b2c9268d9 ci: remove tag list 2026-02-14 22:51:27 +01:00
e1e84909f9 ci: fetch all history 2026-02-14 22:50:25 +01:00
784cef2c74 ci: add --fail-with-body 2026-02-14 22:17:36 +01:00
568dd00554 ci: shell expansion 2026-02-14 22:09:07 +01:00
f5480a12dc ci: add --always 2026-02-14 21:57:35 +01:00
3363c3725d ci: change git describe command 2026-02-14 21:54:24 +01:00
69d5b8aeae ci: fetch tags 2026-02-14 21:45:25 +01:00
26c809f746 ci: add checkout step 2026-02-14 21:21:25 +01:00
eb1cefe72e ci: list files 2026-02-14 21:19:16 +01:00
f3c441db2b fix: ngix security headers 2026-02-14 21:15:08 +01:00
f575c4f0d9 Add mode non-interactive on delete cert 2026-01-19 15:50:45 +01:00
32f20d5443 Cleanup sh script 2026-01-19 15:40:27 +01:00
6 changed files with 72 additions and 40 deletions

26
.gitea/workflows/cd.yaml Normal file
View File

@@ -0,0 +1,26 @@
name: Continuous Integration
on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
jobs:
build:
runs-on: linux
steps:
- name: Git checkout
uses: actions/checkout@v6
with:
fetch-tags: true
- name: Build tarball
run: make tarball
env:
GIT_REFERENCE: ${{ github.ref }}
- name: Build rpm package
run: rpmbuild -ba "$(make name).spec"
- name: Upload rpm package
run: make upload
env:
GIT_PACKAGES_USERNAME: ${{ vars.GIT_PACKAGES_USERNAME }}
GIT_PACKAGES_TOKEN: ${{ secrets.GIT_PACKAGES_TOKEN }}

View File

@@ -1,13 +0,0 @@
name: Continuous Integration
on:
push:
branches:
- main
jobs:
env:
runs-on: linux
steps:
- name: Show env
run: env | sort

View File

@@ -1,12 +1,16 @@
NAME = $(shell basename $(PWD)) NAME = netoik-rp
VERSION = $(shell git describe | sed 's/-/./g') VERSION = $(shell git describe --always --tags --abbrev=0)
BRANCH = $(shell git branch --show-current) RELEASE = $(shell git rev-parse --short HEAD)
REFERENCE = $(if $(GIT_REFERENCE),$(GIT_REFERENCE),$(shell git branch --show-current))
BUILD_ARCH = noarch
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)/$(NAME)-$(VERSION).tar.gz
RPM_BUILD_PATH = $(RPM_RPMDIR)/$(BUILD_ARCH)/$(NAME)-$(VERSION)-$(RELEASE).$(BUILD_ARCH).rpm
.PHONY: name .PHONY: name
name: name:
@@ -16,15 +20,13 @@ 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: build_arch
tarball: $(RPM_TARBALL_PATH) build_arch:
@echo "$(BUILD_ARCH)"
.PHONY: install .PHONY: install
install: install:
@@ -33,3 +35,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 \
"$(REFERENCE)"
.PHONY: tarball
tarball: $(RPM_TARBALL_PATH)
.PHONY: upload
upload:
curl --fail-with-body --upload-file "$(RPM_BUILD_PATH)" --user "$(GIT_PACKAGES_USERNAME):$(GIT_PACKAGES_TOKEN)" https://git.netoik.io/api/packages/samuel/rpm/upload

View File

@@ -14,14 +14,17 @@ 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
add_header Strict-Transport-Security "max-age=63072000; includeSubDomains; preload;" always; # And Nextcloud doc
add_header X-Frame-Options "DENY" always; # see: https://docs.nextcloud.com/server/31/admin_manual/installation/harden_server.html
add_header X-XSS-Protection "0" always; add_header Strict-Transport-Security "max-age=63072000; includeSubDomains; preload;" always;
add_header X-Content-Type-Options "nosniff" always; add_header X-Frame-Options "sameorigin" always;
add_header Referrer-Policy "strict-origin-when-cross-origin" always; add_header X-XSS-Protection "1;mode=block" always;
add_header Content-Security-Policy "default-src 'self'; frame-ancestors 'self'; form-action 'self';" always; add_header X-Content-Type-Options "nosniff" always;
add_header Cross-Origin-Opener-Policy "same-origin" always; add_header X-Permitted-Cross-Domain-Policies "none" always;
add_header Cross-Origin-Resource-Policy "same-site" always; add_header Referrer-Policy "strict-origin-when-cross-origin" always;
add_header Permissions-Policy "geolocation=(), camera=(), microphone=()" always; add_header Content-Security-Policy "default-src 'self' 'unsafe-inline'; frame-ancestors 'self'; form-action 'self';" always;
add_header Server "webserver" always; add_header Cross-Origin-Opener-Policy "same-origin" always;
add_header X-Robots-Tag "noindex, nofollow" always; add_header Cross-Origin-Resource-Policy "same-site" always;
add_header Permissions-Policy "geolocation=(), camera=(), microphone=()" always;
add_header Server "webserver" always;
add_header X-Robots-Tag "noindex, nofollow" always;

View File

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

View File

@@ -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: Netoik Reverse Proxy
License: MIT License: MIT
URL: https://git.netoik.io/samuel/netoik-rp URL: https://git.netoik.io/samuel/netoik-rp
Source0: %{name}-%{version}.tar.gz Source0: %{name}-%{version}.tar.gz
Buildarch: noarch Buildarch: %(make build_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