Questions tagged [iis-8.5]

IIS 8.5 is the version of IIS that ships with Windows 2012 R2, and Windows 8.1.

IIS 8.5 is the version of IIS that ships with Windows Server 2012 R2, and Windows 8.1.

IIS 8.5 includes several new features not found in IIS 8.0 or lower:

  • Enhanced logging. An administrator can enable the logging of additional custom fields from request or response headers, or from server variables.
  • Logging to event tracing for Windows. An administrator can enable the sending of logging information to Event Tracing for Windows (ETW).
  • Dynamic Website activation. If there are a large number of configured sites (100 or greater, by default), the service will not activate any of the sites when the service is started.
  • Idle Worker Process Page-Out. An administrator can enable an idle worker process to be suspended rather than terminated.
353 questions
1
vote
2 answers

Enabling HttpCompression

I am trying to enable HttpCompression for Json files, but the system.WebServer/httpCompression is missing from the configuration editor options in IIS. I have the configuration applied in the Web.Config of my site, and it works fine in my…
Dzyann
  • 111
  • 1
  • 4
1
vote
1 answer

Enabling IIS Failed Request Tracing at the root (not a particular site)

I have some URL Rewrite rules at the root of IIS (i.e. not in a specific site). They are at the root because they Route to Server Farm, and apparently that has to be done at the root (I don't see the option for "Route to a Server Farm" when I…
mhenry1384
  • 535
  • 6
  • 15
1
vote
1 answer

Associate new PKCS #7 Certificate (.p7b) with old/existing private key

I have been issued with a new PKCS #7 Certificate (.p7b) file, with which I need to replace the current soon-to-expire certificate on my server and assign to a binding in IIS. I imported the file into [Certificates - Local…
Sprintstar
  • 173
  • 1
  • 7
1
vote
0 answers

PCI Scan failed with SSL certificate with wrong name

I've an IIS server which is hosted around 250 + sites. I am running a PCI scan against one website and its failing with these 2 errors: Common name of SSL certificate presented on this server is for a different name Title: SSL certificate with wrong…
1
vote
0 answers

AspNetTempFiles being cleared prematurely

Thanks for taking a look at this. We are trying to perform an in place precompile for our .Net webapp running on iis 8.5 using aspnet_compiler.exe. C:\Windows\Microsoft.NET\Framework64\v4.0.30319\aspnet_compiler.exe -m /LM/W3SVC/1/ROOT…
1
vote
1 answer

PID 4 Using Port 80 - IIS Unable To Bind

So I've been having a problem where I can't use localhost:80 on IIS So I ran this: > netstat -ano | find "0:80" And got: TCP 0.0.0.0:80 0.0.0.0:0 LISTENING 4 I then looked under the details tab of Task Manager and…
Matt Cowley
  • 265
  • 2
  • 3
  • 11
1
vote
3 answers

TLS 1.2 client hello triggers TCP Reset from 2012 R2

Struggling with a PKI implementation in my lab (ADCS 2012 R2) and cannot for the life of me figure out where I have gone wrong. Got all the way to the point of being able to generate SSL/TLS certs for an IIS server and make the binding. Also used…
Sloan Ozanne
  • 21
  • 1
  • 1
  • 5
1
vote
2 answers

Redirect URL with IIS 8.5

I would like to redirect/forward a URL on my testdomain. The URL is for example: http://www.mydomaintest.com/feed and I would need that to forward to http://www.mydomaintest.com/feed/stories. I have tried the GUI URL Rewrite in the IIS manager but…
DidierTech
  • 53
  • 1
  • 2
  • 6
1
vote
2 answers

IIS logs before written to file

I have an IIS version 8.5 web server running on Windows Server 2012 R2. Logging is configured on this server to write a new log file daily to %SystemDrive%\inetpub\logs\LogFiles. My "Log Event Destination" is set to Log file only, but clearly, if…
1
vote
1 answer

IIS 8.5 not accepting authentication settings at app level

I'm trying to set authentication settings directly to the app level and IIS doesn't seem to be accepting it. I'm running IIS 8.5 on 2012 R2. Here's what happen when I disable all authentication methods at server level (note my selection in the left…
jValdron
  • 177
  • 2
  • 10
1
vote
0 answers

ColdFusion fails to include custom HTTP response header set in IIS 8.5

I have a Windows 2012 R2 server running IIS 8.5 and ColdFusion 11. Under a specific directory ("mydirectory") I added an HTTP Response Header (Name: X-ResponseHeader, Value: Test). The resulting web.config section looks like this:
cherdt
  • 405
  • 2
  • 4
  • 13
1
vote
2 answers

Migrating rewrite rules under subdirectory from Apache to IIS

In the old Apache hosting, we had the following .htaccess file inside public_html/adm: RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /adm/index.php…
Marc.2377
  • 227
  • 2
  • 15
1
vote
0 answers

Windows 2012 R2 Azure VM Cannot Connect To Local SQL Server

I created an Azure virtual machine running Windows Server 2012 R2 that I am using as a web server to host a couple different web sites. This is my first time ever doing something like this and I am struggling to get it to work. I installed IIS 8.5…
Ty53ler
  • 11
  • 1
1
vote
1 answer

IIS host header name resolution across my network

I have a Windows Server 2012 R2 machine, named [mine-1234]. I have IIS 8.5 installed and a hole in my firewall for ports 80 and 443. I have created 2 test sites one with a default binding to :80 one with two bindings to :80 with host headers.…
K. Alan Bates
  • 223
  • 2
  • 12
1
vote
1 answer

IIS 8.5 re-directing to wrong site when using https

I've got a weird problem with a server running IIS. The server is running a number of websites (on different IP addresses), some of these use SSL and some don't. The problem comes when you try to access a website using https when that site doesn't…