开发者

Override single attribute in machine.config

开发者 https://www.devze.com 2022-12-29 10:19 出处:网络
I was wondering if it\'s possible to override just an attribute of a tag in machine.config ? More exactly I want to set the domain attribute ofin machine.config, as it differs from my production serv

I was wondering if it's possible to override just an attribute of a tag in machine.config ?

More exactly I want to set the domain attribute of in machine.config, as it differs from my production server and my development server.

I tried just adding the tag to machine.config, but alas it doesn't seem to have an effect.

in machine.config I added:

<authentication>
  <forms domain=".foo.com" />
</authenticaion>

EDIT:

Since web.config overrides machine.config, the question is rather how I avoid losing my domain attribute on the ta开发者_如何学Cg, when forms is also defined in web.config ?


You can override values of your machine.config by entering values into web.config. Web.config and machine.config will be merged at runtime. But web.config will override configured values within the web.config.

Ok normally if you leave out the authentication section of your web.config the entry of your machine.config is used.

0

精彩评论

暂无评论...
验证码 换一张
取 消