Rafsanul Hasan
189ea65b38
Merge pull request #6 from sicsbd/dev-asp.netcore2.1enhancements
Changed certificate file path and password
6 years ago
rafsanulhasan
dfb32867a7
Changed certificate file path and password
6 years ago
Rafsanul Hasan
eeec1b5f86
Merge pull request #5 from sicsbd/dev-asp.netcore2.1enhancements
Update PowerShell File to add Windows Firewall rules for https endpoints
6 years ago
rafsanulhasan
6228a4602c
Update PowerShell File to add Windows Firewall rules for https endpoints
6 years ago
Rafsanul Hasan
adbfa390f2
Merge pull request #4 from sicsbd/revert-3-revert-2-dev-asp.netcore2.1enhancements
Revert "Revert "Update to ASP.NET Core 2.1.3""
6 years ago
Rafsanul Hasan
a167a7db5e
Revert "Revert "Update to ASP.NET Core 2.1.3""
6 years ago
Rafsanul Hasan
a85cbeb80e
Merge pull request #3 from sicsbd/revert-2-dev-asp.netcore2.1enhancements
Revert "Update to ASP.NET Core 2.1.3"
6 years ago
Rafsanul Hasan
041973322d
Revert "Update to ASP.NET Core 2.1.3"
6 years ago
Rafsanul Hasan
9d9d85efa4
Merge pull request #2 from sicsbd/dev-asp.netcore2.1enhancements
Update to ASP.NET Core 2.1.3
6 years ago
rafsanulhasan
e23e8c641e
a. Project files
1. Specified RuntimeFrameworkVersion to 2.1.3
2. Specified Microsoft.AspNetCore.App meta package version to 2.1.3
3. Updated NuGetPackages to support ASP.NET Core 2.1.3
i. Microsoft.AspNetCore.Hosting 2.1.0->2.1.1
ii. Microsoft.EntityFrameworkCore, Microsoft.EntityFrameworkCore.Design, Microsoft.EntityFrameworkCore.Relational, Microsoft.EntityFrameworkCore.SqlServer 2.1.0->2.1.2
iii.Microsoft.Extensions.Logging 2.1.0->2.1.1
iv. Microsoft.ApplicationInsights.AspNetCore 2.2.1->2.4.1
v. Microsoft.ApplicationInsights.DependencyCollector 2.6.1-> 2.7.2
vi. Microsoft.ApplicationInsights.ServiceFabric 2.1.1-beta1->2.1.1
vii. Microsoft.Extensions.Logging.AzureAppServices 2.1.0-> 2.1.1
viii. Microsoft.AspNetCore.App 2.1.0->2.1.3
ix. Microsoft.VisualStudio.Azure.Fabric.MSBuild 1.6.5->1.6.7
x. Microsoft.AspNetCore.SignalR, Microsoft.AspNetCore.SignalR.Core, Microsoft.AspNetCore.SignalR.Redis 1.0.0->1.0.3
4. Updated NuGetPackages
i. System.Threading.Tasks.Extensions 4.5.0->4.5.1
ii. WindowsAzure.Storage 9.1.0->9.3.1
b. DockerFile
1. Updated SDK version to 2.1.401
2. Updated Runtime version to 2.1.3
c. Startup.cs file
1. SetCompatibilityVersion to 2.1 in MVC pipeline (Line 83)
2. Suppress compiler warning
3. Re-factored coding styles
d. appsettings.json
1. Updated IdentityUrl to use HTTPS endpoint
e. launchsettings.json
1. Used 64bit IIS Express bitness
6 years ago
rafsanulhasan
7d56cd2b73
npm shrinkwrap
6 years ago
rafsanulhasan
fad941c49d
a. Used 2.1.3 as RuntimeFrameworkVersion (Line 5)
b. Add Certificates (Line 73-76, 181-188)
c. Updated NuGet References to support ASP.NET Core 2.1.3
1. Microsoft.ApplicationInsights.AspNetCore 2.2.1->2.4.1
2. Microsoft.ApplicationInsights.DependencyCollector 2.6.1-> 2.7.2
3. Microsoft.ApplicationInsights.ServiceFabric 2.1.1-beta1->2.1.1
4. Microsoft.Extensions.Logging.AzureAppServices 2.1.0-> 2.1.1
5. Microsoft.AspNetCore.App 2.1.0->2.1.3
d. Updated NuGet packages
1. BuildBundleMinifier 2.6.375->2.8.391
2. Microsoft.ApplicationInsights.Kubernetes 1.0.0-beta8->1.0.0-beta9
4. Microsoft.AspNetCore.DataProtection.Redis 0.3.3->0.4.1
6 years ago
rafsanulhasan
5e405dfea8
1. Exposed port 443 for HTTPS
2. Updated SDK 2.1->2.1.401
3. Updated Runtime 2.1->2.1.3
4. Copy SSL certificate to Linux container's system folder for trust
6 years ago
rafsanulhasan
661f537dfd
1. Specified SSL port
2. Use 64bit IIS Express bitness
6 years ago
rafsanulhasan
065b0112e6
1. Specified RequireHttpsPermanent and SSL port to MVC pipeline (Line 74-77)
2. Add SetCompatibilityVersion to 2.1 in the MVC pipeline (Line 82)
3. Configured HttpsRedirection in the DI container (Line 83-85) and used HttpsRedirection MiddleWare (Line 106)
4. Use HSTS (Http Secured Transport Security) MiddleWare on Staging or Production (Line 101-103)
6 years ago
rafsanulhasan
6226b4a6fa
1. Updated IdentityUrl, CallbackUrl and XamarinCallback to use HTTPS endpoint
2. Specified kestrel options for SSL
6 years ago
rafsanulhasan
68397e81eb
1. Added SSL port
2. Use 64 bit IIS Express bitness
6 years ago
rafsanulhasan
44cdad2091
Added .pfx files (IdentityApp & WebSPA)
6 years ago
rafsanulhasan
a336a2b1cd
1. Added Allowed Hosts
2. Updated IdentityUrl and CallbackUrl to secured endpoint
3. Added Kestrel HTTPS options: Certificate (.pfx) path and password
6 years ago
rafsanulhasan
477fbdc97b
code style formatting
6 years ago
rafsanulhasan
b4044a57b6
1. Added SSL certificates (pfx files)
2. Copy the certificate to the Linux Container system folder
3. Specified SSL certificate (pfx) path and password in appsettings.json
6 years ago
rafsanulhasan
c15c898175
1. Updated Runtime version 2.1-2.1.3
2. Exposed 443 port for HTTPS
3. Updated SDK version 2.1-2.1.401
6 years ago
rafsanulhasan
e901aafc5c
1. Configured CookiePolicyOptions to the DI Container (Line 39) and used CookiePolicy MiddleWare (line 76) in order to support GDPR Cookie compliance
2. Set compatibility version to 2.1 according to documentation (line 172)
3. HTTPS Support
a. Updated MVC pipeline to support HTTPS and specified port (Line 166-171)
b. Configure HTTPS redirection options to the DI (line 51) and used HttpsRedirection MiddleWare (Line 75)
c.
4. Used var instead of type (Line 100, 123, 145, 250-252)
6 years ago
rafsanulhasan
12b1be780e
Used TagHelper instead of Razor to render partial view
6 years ago
rafsanulhasan
b0b9045a08
Changed coding style
6 years ago
rafsanulhasan
87034ce8e0
1. Change Launch browser settings
2. Changed Launch URL to HTTPS endpoint
6 years ago
rafsanulhasan
07a8f8fad8
Added a privacy controller and view for GDPR Cookie compliance
6 years ago
rafsanulhasan
69e91a5ba7
1. Added _CookieConsentPartial.cshtml file for cookie privacy policy consent
2. Used "_CookieConsentPartial" partial page into Layout page to support GDPR Cookie private policy
6 years ago
rafsanulhasan
ac8fdabe5d
1. Specified SSL port
2. Use 64bit IIS Express Bitness
3. Specified applicationUrl for Kestrel startup
6 years ago
rafsanulhasan
e73b25b2e8
a. Added RuntimeFrameworkVersion and set it to 2.1.3
b. Updated NuGet References to support ASP.NET Core 2.1.3
1. Microsoft.ApplicationInsights.AspNetCore 2.2.1->2.4.1
2. Microsoft.ApplicationInsights.DependencyCollector 2.6.1-> 2.7.2
3. Microsoft.ApplicationInsights.ServiceFabric 2.1.1-beta1->2.1.1
4. Microsoft.Extensions.Logging.AzureAppServices 2.1.0-> 2.1.1
5. Microsoft.AspNetCore.App 2.1.0->2.1.3
6. Microsoft.VisualStudio.Azure.Fabric.MSBuild 1.6.5->1.6.7
c. Updated NuGet packages
1. BuildBundleMinifier 2.6.375->2.8.391
2. Microsoft.ApplicationInsights.Kubernetes 1.0.0-beta8->1.0.0-beta9
3. Microsoft.Extensions.Http.Polly 2.1.0->2.1.1
4. Microsoft.AspNetCore.DataProtection.Redis 0.3.3->0.4.1
d. Added NuGet packages
1. Microsoft.VisualStudio.Web.CodeGeneration.Design 2.1.3
e. Removed CLIToolReference from the project file
6 years ago
rafsanulhasan
568a092699
Removed environment variables and volumes from api gateway and Aggregator projects from docker compose file
6 years ago
rafsanulhasan
04e754aabc
Change startup page to unsecured endpoint to HTTPS endpoint
6 years ago
rafsanulhasan
04e178100d
Added HTTPS support for WebSPA, WebMVC and Identity.API Apps in the docker container
6 years ago
Rafsanul Hasan
80e4f37725
Merge pull request #1 from dotnet-architecture/dev
Updated SDK to 2.1.401
6 years ago
rafsanulhasan
93a79c1e4f
1. According to ASP.NET Core Documentation, rendered partial view using TagHelper instead of Razor syntax
2. Referenced newly installed jquery library from libman in the _Layout.cshtml file of WebMVC project
6 years ago
Cesar De la Torre
0296735cb9
Merge pull request #728 from VoodooSV/patch-1
Change to latest SDK version 2.1.401
6 years ago
VoodooSV
c9d33543a1
Change to latest SDK version 2.1.401
6 years ago
Cesar De la Torre
ce039b223f
Updates to Microservices eBook to v2.1.02
6 years ago
rafsanulhasan
8956990b6a
Enabled automatic LibMan package restoration in Identity.Api Service
6 years ago
rafsanulhasan
5e250e034b
Removed wwwroot folder ref from project files
6 years ago
rafsanulhasan
cbbe9d3b49
Replaced Bower with Library Manager in Identity.API Service
6 years ago
rafsanulhasan
7e9dedf77e
Replaced Bower with Library Manager in WebStatusApp
6 years ago
rafsanulhasan
5a1b03bcbc
Replaced Bower with Library Manager in MVC App
6 years ago
Miguel Veloso
53479908a0
Merge pull request #653 from luk355/dev
Modified Enumeration class to support private constructor
6 years ago
Cesar De la Torre Llorente
a2bc8aa567
Merge branch 'dev' of https://github.com/dotnet-architecture/eShopOnContainers into dev
6 years ago
Cesar De la Torre Llorente
fc031b1655
Update serverless ebook minor issue
6 years ago
Eduard Tomàs
fdf1d32398
Merge pull request #693 from dotnet-architecture/401-helm
Fixes 401 after login in helm deployments
6 years ago
eiximenis
ad47571ebd
Fixes 401 after login in helm deployments
6 years ago
Cesar De la Torre Llorente
e476899c35
Merge branch 'dev' of https://github.com/dotnet-architecture/eShopOnContainers into dev
6 years ago
Cesar De la Torre Llorente
e6eb5c11e1
Update with v1 of Serverless eBook
6 years ago