Re: Reverse Proxy Config Issue with Joomla SEF URL's
This is what our expert implemented: server_name_in_redirect off; root /var/www/cache/nginx; index index.html; error_page 566 = @post; if ($request_method = POST) { return 566; } if ($is_args = "?") {...
View ArticleWindows Auth Pass Through???
Hi All. New to NGINX and trying to get a basic load balancer up and running. I've successfully configured it to pass through to a site that doesn't use any type of auth, but when I try to direct toward...
View ArticleRe: Reverse Proxy Config Issue with Joomla SEF URL's
NGINX didn't appreciate our changes. Has anyone experience in virtual config of caching with Joomla?
View ArticleLogs sent to stdout in docker but seeing old logs where are they coming from?
I have NGINX setup in a docker container which configures NGINX access logs to stdout with this RUN ln -sf /dev/stdout /var/log/nginx/access.log && \ ln -sf /dev/stderr /var/log/nginx/error.log...
View ArticleCannot restart nginx properly, yet I can start and stop it and they're both okay
It seems that whenever I use /etc/init.d/nginx restart I am always receiving an error. But using /etc/init.d/nginx start or /etc/init.d/nginx stop everything works well. I'm using Ubuntu 14.04 with...
View ArticleRP Nginx and Outlook Anywhere with NTLM Authentication
Hi everybody, I am currently migrating a reverse proxy ISA server to a Nginx proxy. Everything is ok except the part outlook anywhere ... With ISA Server, there are currently 100 users outlook anywhere...
View ArticleRe: RP Nginx and Outlook Anywhere with NTLM Authentication
All is good about Microsoft-serversync and OWA.
View ArticleXML problem with refresh page
Hello, I use Lua code for XML file but I get problem ( error 500 ) when I try to get more then once some atribute. here is a my code : rewrite_by_lua ' require("LuaXml") local xfile =...
View ArticleCannot allow access to acme-challenge, tried everything
Hi everyone, I am desperate and have tried for hours and days to make it work but still nothing. I wanted to use Let's Encrypt with my wordpress ubuntu server, and for that I need to allow .well-known...
View ArticleNginx location group capture + rewrite?
I'm trying to do a group capture in a Nginx location block and it's not working for me. Is what I am trying to do even possible? location ~* /(?<cat>cars|trucks|bikes|motorcycle|quads) { rewrite...
View ArticlePydio and Baikal parallel on a Raspberry
Hello, my project is already described in the headline. pydio is running and I can access it very well via browser. Problems: I was not able to get WebDAV running which leads to some lines in my config...
View ArticleRedirect all url to single php
Hi, i want a single php script to handle all incoming requests to my /blog directoy. The php script checks wether a SQL record exists for the url (i.e. www.example.com/blog/example_article). If a...
View ArticleRe: Redirect all url to single php
i have managed to firgure out a rule but i still get a 404 error location /blog { rewrite ^/([a-z0-9-]+) /article.php?slug=$1; }
View ArticleRe: Nginx location group capture + rewrite?
I solved the issue by doing this instead : location ~* /(cars|trucks|bikes|motorcycle|quad-bikes) { rewrite ^/([a-zA-Z-]+)/([0-9]+)(.*)$ /page.php?id=$2 last; ... ... } The regex ([a-zA-Z-]+) allows me...
View Articlenginx 500 error when file 99% uploaded
Dear all, I am using nginx/1.8.0 and to debug a large file upload issue I am facing in WordPress, I post a file with a simple script: Index file: <html> <!-- index.html -->...
View Articlenginx service wouldn't start
Hello, I'm trying to run nginx server on CentOS7 and getting the following errors: `Job for nginx.service failed because the control process exited with error code.` When checking for a status I got...
View ArticleRe: nginx service wouldn't start
You are running "nginx -t" which failed so check the logs.
View ArticleRe: nginx service wouldn't start
yes the output of the test is: nginx: the configuration file /etc/nginx/nginx.conf syntax is ok nginx: configuration file /etc/nginx/nginx.conf test is successful but when I'm trying to run `sudo...
View Articleproblems with upstream
I try to use upstream and proxy for load balancing on CentOS 7 Minimal, but something is wrong. I use this manual: http://nginx.org/en/docs/http/load_balancing.html. When I open Nginx localhost in...
View Article