-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.config
31 lines (31 loc) · 2.94 KB
/
App.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<section name="KeyEncryptionOptions" type="System.Configuration.NameValueSectionHandler"/>
</configSections>
<KeyEncryptionOptions>
<add key="LocalCachingTime" value="00:20:00"/>
</KeyEncryptionOptions>
<connectionStrings>
<add name="CommerceDB-Stage" connectionString="Data Source=tcp:rds-commerce-stage.cafepress.io;Initial Catalog=stage_db;Persist Security Info=True;User ID=stage_pappy_service;Password=CafePress!" providerName="System.Data.SqlClient" />
<add name="CommerceDB-Live" connectionString="Data Source=tcp:rds-commerce-live.cafepress.io;Initial Catalog=db;Persist Security Info=True;User ID=pappy_service;Password=Byzant1um" providerName="System.Data.SqlClient" />
<add name="CloudPrimitivesDB-Stage" connectionString="Data Source=tcp:rds-imaging-stage.cafepress.io;Initial Catalog=CloudPrimitivesDb;Persist Security Info=True;User ID=stage_cloudprim_app;Password=Cafepress!;pooling=true;max pool size=500" providerName="System.Data.SqlClient" />
<add name="CloudPrimitivesDB-Live" connectionString="Data Source=tcp:rds-imaging-live.cafepress.io;Initial Catalog=CloudPrimitivesDb;Persist Security Info=True;User ID=cloudprim_app;Password=$h0wm31mag3$!;pooling=true;min pool size=15;max pool size=500" providerName="System.Data.SqlClient" />
</connectionStrings>
<appSettings>
<add key="GetImageUrl-Stage" value="https://theia-stage.cafepress.io/cloudprimitives/CloudPrimitivesRestful.svc/PrimitivesWithNoProcess/PRSS/" />
<add key="GetImageUrl-Live" value="https://theia.cafepresscloud.com/cloudprimitives/CloudPrimitivesRestful.svc/PrimitivesWithNoProcess/PRSS/" />
<add key="UploadImageUrl-Stage" value="https://upload-stage-internal.cafepress.io/DesignAndListCloudAPI/DesignAndListCloudAPIRestful.svc/GetImageNoForUploadedImage" />
<add key="UploadImageUrl-Live" value="https://upload.cafepresscloud.com/DesignAndListCloudAPI/DesignAndListCloudAPIRestful.svc/GetImageNoForUploadedImage" />
<add key="CupApi-Stage" value="http://cupapi-stage.cafepress.io/cupapi/CupApiRpc.svc" />
<add key="CupApi-Live" value="http://cupapi-live-internal.cafepress.io/cupapi/CupApiRpc.svc" />
<add key="Primitives-Stage" value="http://primitives-stage.cafepress.io/CloudPrimitives/ImageDataRpc.svc" />
<add key="Primitives-Live" value="http://primitives-live.cafepress.io/CloudPrimitives/ImageDataRpc.svc" />
<add key="Pappy-Stage" value="http://pappy-stage.cafepress.io/pappy/PappyApiRestful.svc" />
<add key="Pappy-Live" value="http://pappy-live-internal.cafepress.io/Pappy/PappyApiRestful.svc" />
<add key="MemberEncryptionSecretName-Stage" value="secret-member-data-protection-stage" />
<add key="MemberEncryptionSecretKey-Stage" value="secret-member-data-protection-stage" />
<add key="MemberEncryptionSecretName-Live" value="secret-member-data-protection-live"/>
<add key="MemberEncryptionSecretKey-Live" value="secret-member-data-protection-live" />
</appSettings>
</configuration>