-
Notifications
You must be signed in to change notification settings - Fork 225
/
2-CustomConfiguration.ps1
33 lines (29 loc) · 1.09 KB
/
2-CustomConfiguration.ps1
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
32
33
<#
.EXAMPLE
This example performs a custom SQL Server Reporting Services configuration.
It will initialize SQL Server Reporting Services and register the below
custom Report Server Web Service and Report Manager URLs.
Report Server Web Service:
http://localhost:80/MyReportServer
https://localhost:443/MyReportServer
Report Manager:
http://localhost:80/MyReports
https://localhost:443/MyReports
Note: this resource does not currently handle SSL bindings for HTTPS endpoints.
#>
Configuration Example
{
Import-DscResource -ModuleName SqlServerDsc
node localhost {
SqlRS DefaultConfiguration
{
InstanceName = 'MSSQLSERVER'
DatabaseServerName = 'localhost'
DatabaseInstanceName = 'MSSQLSERVER'
ReportServerVirtualDirectory = 'MyReportServer'
ReportsVirtualDirectory = 'MyReports'
ReportServerReservedUrl = @('http://+:80', 'https://+:443')
ReportsReservedUrl = @('http://+:80', 'https://+:443')
}
}
}