Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

IIS 7.5 IP address works but fully qualified name does not

Tags:

iis-7

Here are the steps (Windows Server 2008, R2, IIS 7.5)

  • create new virtual folder under default web site
  • create new application in that virtual folder
  • add helloworld.htm page to that application
  • access helloworld.htm with no issues using fully qualified name http://server_name/virtual_folder/application/helloworld.htm

  • for the application, change Security->Authentication to require Windows Authentication and not allow anonymous authentication

  • in order to access same page you need to use ip_address instead of server_name.

Please help!

Thanks PV

like image 283
PV1 Avatar asked Nov 05 '22 06:11

PV1


1 Answers

Had the same issue, changing the ApplicationPool identity to NetworkService solved it.

I found the solution here

like image 98
A.B.Cade Avatar answered Dec 23 '22 04:12

A.B.Cade