Sha256: 960ff921fed806255a23dd612bc56dcf58498d65b4e2766ffe3e4443c429458a
Contents?: true
Size: 826 Bytes
Versions: 1
Compression:
Stored size: 826 Bytes
Contents
app_pool do |p| p.name :MyAppPool p.runtime_version :'v2.0' p.process_model do |m| m.identity_type :NetworkService end p.site do |s| s.name :MySite s.path '/' s.binding 'http/*:80:localhost' s.binding 'http/*:80:test.local' s.binding "net.tcp/808:*" s.binding "net.pipe/*" s.physical_path 'c:\\temp\\MySite' s.application do |a| a.name :MyApp a.path '/MyApp' a.physical_path 'c:\\temp\\MySite\\MyApp' a.virtual_directory do |v| v.name :MyAppVirtualDirectory v.path '/AppVDir' v.physical_path 'c:\\temp\\MySite\MyVDir' end end s.virtual_directory do |v| v.name :MySiteVirtualDirectory v.path '/SiteVDir' v.physical_path 'c:\\temp\\MySite\MyVDir' end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
iisconfig-0.0.1.pre1 | test/example.rb |