File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
deploy/linux/server/front Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -63,6 +63,8 @@ public static IServiceCollection AddIdentity(this IServiceCollection services)
6363 public static IWebHostBuilder AddSsl ( this IWebHostBuilder builder , IConfiguration config )
6464 {
6565 // in Linux put here: ~/.dotnet/corefx/cryptography/x509stores/
66+ if ( ! OperatingSystem . IsWindows ( ) ) return builder ;
67+
6668 var store = new X509Store ( StoreName . My , StoreLocation . LocalMachine ) ;
6769 store . Open ( OpenFlags . ReadOnly ) ;
6870 int port = int . Parse ( config [ "ServerSettings:httpsPort" ] ! ) ;
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ function check_and_setup()
44}
55
66sudo apt-get update
7- sudo apt-get install -y dotnet-sdk-7 .0 dotnet-runtime-7 .0 aspnetcore-runtime-7 .0
7+ sudo apt-get install -y dotnet-sdk-8 .0 dotnet-runtime-8 .0 aspnetcore-runtime-8 .0
88
99rm -rf botticelli/
1010git clone https://github.com/devgopher/botticelli.git
You can’t perform that action at this time.
0 commit comments