zwischenstand: ApiService.svc/Test erweitere Ansicht

allowed_apis
This commit is contained in:
2025-06-13 11:16:38 +02:00
parent 960d6a7db6
commit 2ec8d94b5e
5 changed files with 21 additions and 3 deletions

View File

@@ -0,0 +1,3 @@
188.40.107.122
88.99.144.198
95.223.45.70

View File

@@ -178,6 +178,7 @@
<Content Include="ApiStreamService.svc" />
<Content Include="ApiService.svc" />
<Content Include="AdminService.svc" />
<Content Include="Config\allowed_ips_admin_api.txt" />
<Content Include="GkvAccountingService.svc" />
<Content Include="Admin.aspx" />
<Content Include="AnalysisService.svc" />

View File

@@ -324,6 +324,9 @@
<add key="StoredFilesFolderPath" value="C:\BeWoPlaner\StoredFiles"/>
<add key="HelloWorldPdfLocation" value="C:\BeWoPlaner\StoredFiles\HelloWorld.pdf"/>
<add key="ServiceLogFilePath" value="C:\StoredFiles\logs\server\service.log.txt"/>
<add key="ServiceLogFilePath" value="C:\BeWoPlaner\logs\server\service.log.txt"/>
<add key="WCFErrorLogFilePath" value="C:\BeWoPlaner\logs\server\wcferror.log.txt"/>
<add key="JsonErrorLogFilePath" value="C:\BeWoPlaner\logs\server\jsonerror.log.txt"/>
<add key="ApiServiceTestFilePath" value="C:\BeWoPlaner\logs\server\apiservice.test.txt"/>
</appSettings>
</configuration>

View File

@@ -396,7 +396,10 @@
<add key="StoredTenantFilesFolderPath" value="C:\StoredTenantFiles"/>
<add key="HelloWorldPdfLocation" value="C:\StoredFiles\HelloWorld.pdf"/>
<add key="ServiceLogFilePath" value="C:\StoredFiles\logs\server\service.log.txt"/>
<add key="ServiceLogFilePath" value=""/>
<add key="WCFErrorLogFilePath" value=""/>
<add key="JsonErrorLogFilePath" value=""/>
<add key="ApiServiceTestFilePath" value=""/>
</appSettings>
<!-- <> <> <> Appsettings <> <> <> -->
</configuration>

View File

@@ -13,7 +13,10 @@ namespace BeWo.Service
StoredFilesFolderPath,
StoredTenantFilesFolderPath,
HelloWorldPdfLocation,
ServiceLogFilePath
ServiceLogFilePath,
WCFErrorLogFilePath,
JsonErrorLogFilePath,
ApiServiceTestFilePath
}
public enum WebSecretConfigSetting
@@ -25,4 +28,9 @@ namespace BeWo.Service
GoogleDistanceMatrixApiKey,
GkvSecretKey,
}
public enum IPAddressList
{
AdminApi
}
}