-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update README and Copyright year * Fix visual glitch related to font-awesome * Cleanup of Project file
- Loading branch information
1 parent
8069131
commit 4748383
Showing
6 changed files
with
38 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
For further infos, you can follow this page: https://docs.microsoft.com/de-de/aspnet/core/host-and-deploy/linux-nginx?view=aspnetcore-5.0 | ||
|
||
This file explains only how to setup a service quickly. | ||
|
||
* Make a folder in "/var/dotnetwww/irmaonair_web" | ||
* Download the application from Release tab and extract it in the folder mentioned before | ||
* Download the "ioaweb.service" file from this folder and copy it into systemd. (sudo cp ioaweb.service /etc/systemd/system/ioaweb.service) | ||
* Activate the systemd service (sudo systemctl enable ioaweb.service) | ||
* Start the systemd service (sudo systemctl start ioaweb.service) | ||
* Check if the service runs (sudo systemctl status ioaweb.service) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
[Unit] | ||
Description=IRMA onAir Web ASP.NET Core 5.0 App | ||
|
||
[Service] | ||
WorkingDirectory=/var/dotnetwww/irmaonair_web | ||
ExecStart=/usr/bin/dotnet /var/dotnetwww/irmaonair_web/IrmaWeb.dll | ||
Restart=always | ||
# Restart service after 10 seconds if the dotnet service crashes: | ||
RestartSec=10 | ||
KillSignal=SIGINT | ||
SyslogIdentifier=dotnet-ioa | ||
User=www-data | ||
Environment=ASPNETCORE_ENVIRONMENT=Production | ||
Environment=DOTNET_PRINT_TELEMETRY_MESSAGE=false | ||
|
||
[Install] | ||
WantedBy=multi-user.target |