4 Commits

Author SHA1 Message Date
f429512a14 Rollback to Oqtane Version 6.1.3 and dotnet 9.0
Some checks failed
build-debian-package / Build the debian package (push) Failing after 57s
2026-01-17 23:47:29 +01:00
933d194e5c Best-Practise: do not delete user
All checks were successful
build-debian-package / Build the debian package (push) Successful in 3m15s
2026-01-15 14:54:33 +01:00
162fd61936 Use adduser --system to prevent the script from failing
All checks were successful
build-debian-package / Build the debian package (push) Successful in 3m4s
2026-01-15 14:48:54 +01:00
4405df38aa Fix: Typo
All checks were successful
build-debian-package / Build the debian package (push) Successful in 3m13s
2026-01-15 10:40:39 +01:00
7 changed files with 10 additions and 11 deletions

View File

@@ -15,11 +15,11 @@ jobs:
- name: "Git checkout"
run: git checkout "${{ gitea.sha }}"
- name: "Submodules auschecken"
run: git submodules update --init
run: git submodule update --init
- name: "Dotnet SDK einrichten"
uses: actions/setup-dotnet@v4
with:
dotnet-version: "10.0.x"
dotnet-version: "9.0.x"
- name: "Oqtane Framework restore"
run: dotnet restore ./oqtane.framework/Oqtane.slnx --verbosity detailed
- name: "Oqtane Framework bauen"

View File

@@ -2,6 +2,6 @@ Package: alumnihub
Architecture: amd64
Essential: no
Priority: optional
Depends: aspnetcore-runtime-10.0,nginx,postgresql-18
Depends: aspnetcore-runtime-9.0,nginx,postgresql-18
Maintainer: kocoder
Description: Our production oqtane setup

View File

@@ -1 +1,2 @@
#!/bin/bash
#!/bin/bash
adduser --system alumnihub

View File

@@ -1,2 +1 @@
#!/bin/bash
deluser oqtane
#!/bin/bash

View File

@@ -1,2 +1 @@
#!/bin/bash
useradd oqtane
#!/bin/bash

View File

@@ -2,14 +2,14 @@
Description=Alumnihub Webservice
[Service]
WorkingDirectory=/opt/oqtane
WorkingDirectory=/opt/alumnihub
ExecStart=/usr/bin/dotnet /opt/alumnihub/Oqtane.Server.dll
Restart=always
# Restart service after 10 seconds if the dotnet service crashes:
RestartSec=5
KillSignal=SIGINT
SyslogIdentifier=alumnihub
User=oqtane
User=alumnihub
Environment=ASPNETCORE_ENVIRONMENT=Production
Environment=ASPNETCORE_URLS="http://127.0.0.1:5000"
Environment=ASPNETCORE_FORWARDEDHEADERS_ENABLED=true