Re: Is there a length limitation on file extensions?

2016-03-09 Thread j.o.l
after some more experiments it looks like I was caught by a looking at cached data. I was reloading the file for https as it was displayed as text (happens to be readable xml). However this reload was answered with not-modified without content-type (which is afaik standard conformant). Only on

Re: Is there a length limitation on file extensions?

2016-03-09 Thread j.o.l
yes, nginx -t reports OK. I tried the empty types block with default_type as suggested - no change to the behavior. I verified that there is no other block processing the request. There is no other block that uses that certificate on port 443, and the port 8080 is used for that server block only.

Re: Is there a length limitation on file extensions?

2016-03-09 Thread B.R.
Are you sure this configuration gets loaded (nginx -t OK, no error on configuration -re-loading)? You could try to replace your types block with an empty one (to override defaults if they are defined at upper level, or simply remove them) and add the following directive: default_type

Re: Is there a length limitation on file extensions?

2016-03-08 Thread j.o.l
Thanks a lot for providing a working example. I reproduced it and yes works with that server block. Then I tried to change until I discovered the following. Here is my server block: server { listen 443 ssl; listen 8080;

Re: Is there a length limitation on file extensions?

2016-03-07 Thread A. Schulze
j.o.l: I am using Nginx to serve a website that hosts a .Net application. The file a user needs to download and that triggers installation is a *.application file, and an MS Internet Information Server associates that with the mime type application/x-ms-application. However that file never

Is there a length limitation on file extensions?

2016-03-07 Thread j.o.l
I am using Nginx to serve a website that hosts a .Net application. The file a user needs to download and that triggers installation is a *.application file, and an MS Internet Information Server associates that with the mime type application/x-ms-application. However that file never gets any