diff --git a/6. SignalNginx.cs b/6. SignalNginx.cs index 17698bc..293f181 100644 --- a/6. SignalNginx.cs +++ b/6. SignalNginx.cs @@ -11,7 +11,7 @@ internal static partial class Program { private static Boolean SignalNginxReload(ref Configuration configuration) { - Log.FastLog(Environment.UserName, LogSeverity.Debug, "Signal"); + Log.FastLog("Signaling as: " + Environment.UserName, LogSeverity.Verbose, "Signal"); Process nginx = new(); nginx.StartInfo.FileName = configuration.NginxPath; diff --git a/App/AssemblyInfo.cs b/App/AssemblyInfo.cs index ffb3f65..bf3aeb1 100644 --- a/App/AssemblyInfo.cs +++ b/App/AssemblyInfo.cs @@ -14,6 +14,6 @@ [assembly: Guid("305d3d7e-daac-4bc9-81f0-51c2bca3fbed")] -[assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] +[assembly: AssemblyVersion("1.0.1.0")] +[assembly: AssemblyFileVersion("1.0.1.0")] [assembly: AssemblyInformationalVersion("1.0 stables")] \ No newline at end of file diff --git a/README.md b/README.md index 312a20a..830eb44 100644 --- a/README.md +++ b/README.md @@ -7,5 +7,7 @@ --- -Written in C# - .Net Framework 4.8.1 (C# 12.0) -Does not need administrative privileges - must run as the same user as the nginx process in order to be able to signal a reload. \ No newline at end of file +SSH server cipher must be compatible with [SSH.NET](https://github.com/sshnet/SSH.NET) +Does not need administrative privileges - must run as the same user as the nginx process in order to be able to signal a reload. + +Written in C# (12.0) .Net Framework v4.8.1 \ No newline at end of file