Re: Problem using EWS part of exchange
I ran in the same issue today.The solution was to disable integrated windows authentication and enable basic authentication instead under Server/Virtual Directorys/EWS in Exchange Admin Panel.
View ArticleCompiling extended status module fails
I am trying to compile the extended status module and I am getting a compilation error in file ngx_http_extended_status_module.cThe first sign of trouble...
View ArticleRe: Compiling extended status module fails
I fixed the problem. I did not patch the software as instructed in the documentation.
View ArticleRewrite help
Hello everyone!I'm fairly new with Nginx. Can you please help me with my rewrite?What I want to do (if possible) is to combine my location keywords into a single line location, instead of...
View ArticleRe: "map $url" does not work instead of "if $url"
This used to work in 1.3.13+ but for some reason no longer works on 1.6.0 or 1.6.1.Can someone please explain what has changed concerning the map directive that makes it no longer work as it did in the...
View Articlemap $uri in 1.3.0+ NOT working in 1.6.0+
We have the following code that worked in 1.3.16....# Map VWS URI's to HTTP ($use_secure=0), HTTPS ($use_secure=1) or keep same ($use_secure=2)map $uri $use_secure {default 0;~^/sites/ 2;~^/account/...
View ArticleRe: map $uri in 1.3.0+ NOT working in 1.6.0+
I just realized I posted this in the wrong forum... re-posting in the Nginx Mailing List - English....
View Articlerewrite urls domain
I wonder how can I configure my nginx to do the following conversion:Convert all links / urls that appear on my site as mydomain.com.br for mydomain.comThank you.
View ArticleImplementing PHP-FPM:
Hi my fellow Nginx'ers,I'm building a small webserver using a raspberrypi and archlinux,so far it runs perfectly but, i'm having a few problems while implementing php-fpm,please take a look.This is the...
View ArticleRe: Implementing PHP-FPM:
Apparently, it doesn't allow you to download it so,here are the 3 files in clear text:A snippet of nginx.conf (/etc/nginx/nginx.conf):location ~ \.php$ {root html;fastcgi_pass...
View ArticleBasic website configuration
Hello, I am new to the forum, and to linux for that matter. I have Ubuntu 14.04 LTS installed on a Dell PowerEdge server that I got for almost nothing. I purchased a domain idi-welding.com and have...
View ArticleRe: Basic website configuration
OK, so I figured out how to copy and paste. I will post my /etc/nginx/nginx.conf file then sites-available and finally sites-enabled hopefully someone can see what I am doing wrong. But, before I do...
View ArticleRe: Basic website configuration
Here is my sites-available file:server{listen 127.0.0.1:8080;server_name www.idi-welding.com *.idi-welding.com;rewrite ^/(.*) http://idi-welding.com/$1 permanent;}server {listen 8080;server_name...
View ArticleRe: Basic website configuration
Here is my sites-enabled file:server{listen 127.0.0.1:8080;server_name www.idi-welding.com *.idi-welding.com;rewrite ^/(.*) http://idi-welding.com/$1 permanent;}server {listen 8080;server_name...
View ArticleProblem with 301 redirect
Hi, I'm new here.Trying to work on an nginx redirectI'm using wordpress.The goal is to change techraptor.net/%year%/%monthnum%/%day%/%postname%(techraptor.net/2014/10/05/articlename)...
View ArticleRe: Problem with 301 redirect
I got it fixed.location ~ ^/[0-9]+/[0-9]+/[0-9]+/(.*){return 301 /content/$1;}
View Article500 internal server error nginx
Our website is having some major issues and we need help urgently. I appreciate any one's insight into this!We use the headway theme with wordpress. Our site is very image heavy and while I don't...
View ArticleRe: Basic website configuration
Wow, 104 views and not one of them could tell me how to do a basic task?
View ArticleSetting up Nginx with subdomain and ssl
Hello,Could someone please tell me if there is a better way to rewrite my config file.I have 1 domain that has got several subdomain and ssl. From what you can see all the port listening on port 80...
View ArticleNginx Proxy not working as expected
I make calls to the backend server were apache is running using Javascript. I have setup an nginx proxy and route all graphite and elasticsearch requests through it to the server were apache2 is...
View Article