mirror of
https://github.com/Smaug123/PulumiConfig
synced 2025-10-05 08:38:41 +00:00
13 lines
318 B
Forth
13 lines
318 B
Forth
namespace PulumiWebServer
|
|
|
|
type NginxConfig =
|
|
{
|
|
Domain : DomainName
|
|
WebSubdomain : WellKnownCname
|
|
}
|
|
|
|
member this.Domains =
|
|
[ this.WebSubdomain ]
|
|
|> List.map (fun subdomain -> $"%O{subdomain}.{this.Domain}")
|
|
|> fun subdomains -> this.Domain.ToString () :: subdomains
|