私はRedisSessionStateProvider
このhttps://azure.microsoft.com/en-us/documentation/articles/web-sites-dotnet-session-state-caching/のような手順を使用しています
で接続文字列を定義します。web.config
この例ではXXXXXX
です。
<system.web>
<compilation debug="true" targetFramework="4.6.1" />
<httpRuntime targetFramework="4.5" />
<globalization culture="es-CO" uiCulture="es" />
<customErrors mode="Off" />
<sessionState mode="Custom" customProvider="SessionStateStore">
<providers>
<add name="SessionStateStore" type="Microsoft.Web.Redis.RedisSessionStateProvider" connectionString="XXXXXX" throwOnError="true" applicationName="NominappSession" />
</providers>
</sessionState>
</system.web>
ソースコードに接続文字列を入れたくありません。では、Azure の設定を使用してこの接続文字列を定義するにはどうすればよいでしょうか?
github から azure にデプロイするので、Kudu を使用します。外部 CI サーバーを持っていません。
アドバイスをお願いします。