Join GitHub today
GitHub is home to over 20 million developers working together to host and review code, manage projects, and build software together.
Windows Azure Session Storage #1266
Comments
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
Show comment Hide comment
Issue closed |
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
Show comment Hide comment
dzuelke
Aug 8, 2010
Contributor
Sample config (the values for production are actually the development defaults that are used if nothing is configured, as it is the case here in the development environment):
<ae:configuration environment="development-david" context="web">
<storage class="AgaviWindowsazureSessionStorage" />
</ae:configuration>
<ae:configuration environment="production" context="web">
<storage class="AgaviWindowsazureSessionStorage">
<ae:parameter name="host">127.0.0.1:10002</ae:parameter>
<ae:parameter name="account_name">devstoreaccount1</ae:parameter>
<ae:parameter name="account_key">Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==</ae:parameter>
</storage>
</ae:configuration>
Also remember that you need to configure AgaviWebRequest
as explained in #1265.
Sample config (the values for production are actually the development defaults that are used if nothing is configured, as it is the case here in the development environment): <ae:configuration environment="development-david" context="web">
<storage class="AgaviWindowsazureSessionStorage" />
</ae:configuration>
<ae:configuration environment="production" context="web">
<storage class="AgaviWindowsazureSessionStorage">
<ae:parameter name="host">127.0.0.1:10002</ae:parameter>
<ae:parameter name="account_name">devstoreaccount1</ae:parameter>
<ae:parameter name="account_key">Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==</ae:parameter>
</storage>
</ae:configuration> Also remember that you need to configure |
ghost
assigned
dzuelke
Jan 16, 2014
This issue was closed.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
dzuelke commentedApr 19, 2010
Based on the http://phpazure.codeplex.com/ library.