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
0
votes
1 answer

IIS 8.5 Import Site Bindings?

Is there a way that I can import a list of bindings for a site in IIS 8.5? I have 160+ bindings to add to one site, all the same IP, and I'd really love to be able to do it non-manually :)
Kevin
  • 133
  • 1
  • 2
  • 14
0
votes
1 answer

Report on Changes to IIS configuration

We are currently looking for a method of verifying what changes have been made over a period of time to our IIS 8.5 sites. We have reviewed the IIS auditing event log which can be useful for tracking down the exact point in time and who made a…
Neil
  • 83
  • 6
0
votes
0 answers

Is there a way to tell IIS to not require SSL, but require client certificates if the client uses SSL?

I'd like to set up IIS to listen on 127.0.0:80, and on *:443, so http connections are allowed from localhost only, while anyone from the net will have to use SSL. (This part is no problem). Also, i want to require the SSL connections to use client…
0
votes
1 answer

Use Basic Authentication in IIS 8.5

In IIS 6, you could turn on Authentication by right clicking an application, selecting properties, going to the Directory Security Tab, selecting Edit in the Authentication and Access control group box, and setting Authenticated Access to "Basic…
KyleMit
  • 488
  • 4
  • 9
  • 22
0
votes
2 answers

ownCloud WebDAV interface seems to be broken

I've been trying to host ownCloud on my server but everytime I try to it tells me this : Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken. Please double check the installation…
Menno van Leeuwen
  • 219
  • 2
  • 3
  • 9
0
votes
1 answer

Allow browse directory on sub directory only

I have an ASP.NET Core website which contains the binaries and resources needed to run the website. The site generates log output in a "Log" directory, located inside the web site's root directory. I would like to be able to browse the contents of…
Mort
  • 3
  • 2
0
votes
0 answers

Wincache stops running, with PHP and IIS

I'm running PHP 7.2.22, with Wincache 2.0.0.8 on IIS 8.5, Windows Server 2012 R2. Everything runs well most of the time. But about every few days, Wincache stops running. PHP and everything else keeps running fine, and I only notice Wincache has…
0
votes
0 answers

Applying IIS rewrite rules from multiple web.configs for single request

I am trying to configure a directory structure in an IIS website with rewrite rules applying at various levels. For example, consider the following structure: Default Web Site ├─ web.config └─ v1 ├─ web.config └─ wwwroot └─ hello.txt I…
14207973
  • 101
  • 2
0
votes
1 answer

Inconsistent 403 Forbidden issues with images on a website

I am getting inconsistent HTTP 403 Forbidden results when requesting images embedded on a webpage. This is happening more frequently in FireFox, but occasionally also happens in Chrome. This website has been used for many years and this just popped…
Mike Cole
  • 203
  • 2
  • 5
  • 15
0
votes
2 answers

nginx reverse proxy 404 with two servers

I have a problem with my NGINX configuration. I have two webservers running on windows servers. Which one is called from outside with 443 and then should be forwarded to the server with 41001. The second server block should be called the FQDN and…
0
votes
1 answer

How to show a default page on a protected website running on IIS

I can't figure out the correct syntax in my web.config to allow the general public to see the index.aspx as a default page and for any other page to go thru the login page. If I use www.mywebsite.com/index.aspx the page is displayed fine and I don't…
Corobori
  • 123
  • 6
0
votes
1 answer

IIS Client Certificate Authorization working locally but not remotely

I have been attempting to set up client cert authorization on an IIS endpoint. Following the tutorial at https://joji.me/en-us/blog/how-to-create-an-iis-website-that-requires-client-certificate-using-self-signed-certificates/ I created a root cert,…
Ralph
  • 101
  • 2
0
votes
1 answer

Certificate SNI and IIS host header

Context: IIS website with hostname header configured and TLS certificate. When a client initiates a connection to the specified site, is this the right flow ? Client (browser) performs DNS lookup TCP connection is established to the server Client…
Mario
  • 3
  • 1
0
votes
1 answer

IIS 8.5 and 10, max value that can be set for IIS Requests/Recycle?

Per DISA we're required to set the recycling option for requests. I can't seem to track down what the max value for this should be or when the counter gets restarted? If app pools are configured to recycle at midnight, shouldn't the requests…
0
votes
1 answer

Kerberos rdns=false Breaking Connections From Linux Clients to Windows IIS Server

Recently I changed the krb5.conf file on Linux clients to use: [libdefaults] rdns = false These clients can still successfully use kerberos auth to connect to other Linux webservers. However, now their connections break to IIS webservers. An…