27 lines
582 B
RPMSpec
27 lines
582 B
RPMSpec
Name: %{make name}
|
|
Version: %(make version)
|
|
Release: 1%{?dist}
|
|
Summary: Netoik Reverse Proxy
|
|
License: MIT
|
|
URL: https://git.netoik.io/samuel/netoik-rp
|
|
|
|
Source0: %{name}-%{version}.tar.gz
|
|
Buildarch: x86_64
|
|
BuildRequires: make
|
|
Requires: nginx
|
|
|
|
%description
|
|
Install the reverse proxy called nginx with a predefined configuration and with TLS certificates attached to netoik.io
|
|
|
|
%prep
|
|
%autosetup -v
|
|
|
|
%install
|
|
%make_install
|
|
|
|
%files
|
|
%attr(644, root, root) /%{_sysconfdir}/nginx/nginx.conf
|
|
|
|
%changelog
|
|
# let's skip this for now
|