Glimpse.axd 403ing In IIS

When I try to access /Glimpse.axd after publishing in IIS (7.5), now I get a 403 forbidden answer. Is there an option in IIS that prohibits access to .axd files? Or is it completely different?

+6
source share
2 answers

This is usually because your source IP address is not resolved in the web.config section for Glimpse. I just went to this question yesterday.

Look for this in the web.config file, it can work anywhere in the web.config file.

<glimpse enabled="true"> <ipAddresses> <!-- List of IP addresses allowed to get Glimpse data. Optional. localhost (IPv4 &IPv6) by default --> <add address="xxxx"/> <!--The ip of your machine --> <add address="::1"/> </ipAddresses> </glimpse> 
+12
source

I got an error when trying to access http://leniel-pc:8083/glimpse.axd :

403 Forbidden
Make sure that 'aa90 :: edad: 55a5: 7777: cd2c% 11' is configured for take a look at access.

Thereafter:

 <glimpse enabled="true"> <ipAddresses> <!-- List of IP addresses allowed to get Glimpse data. --> <!--The ip of your machine --> <add address="aa90::edad:55a5:7777:cd2c%11"/> </ipAddresses> </glimpse> 

The problem is solved !: D

+2
source

Source: https://habr.com/ru/post/905872/


All Articles