Re: .htaccess codes Conversion
You can using tool convert htaccess to nginx config at URL: winginx.com/en/htaccess
View ArticleStop apt-get from trying to downgrade nginx on Debian Wheezy
Hi, For some reasons, apt-get is trying to install an older version of the nginx version currently installed. I never had a case like this and i'd like to know how to not have this kind of case...
View ArticleTrying to set up Nginx with Symfony 3 on Windows 10
Hello everybody, I am quite new with NGINX and Symfony in general, however, I've recently decided to try to start a project using these two tools after hearing a lot of positive feedbacks on both of...
View ArticleRe: How to redirect to another web with same domain
Hi there, You might want to look into the GeoIP module. http://nginx.org/en/docs/http/ngx_http_geoip_module.html
View ArticleBasic auth only on POST
Im trying to secure my rest backend by adding basic authentication to every call that can modify my data. In other words I want GET requests available to everyone, but secure POST, PUT and DELETE...
View ArticleRe: Nginx in front of Exchange 2010 / Activesync
I finally got ActiveSync working with the configuration I wrote up here. http://blog.adamjoshuasmith.com/deploying-exchange-2016-behind-nginx-free/ Maybe that will work for you.
View ArticleRe: Stop apt-get from trying to downgrade nginx on Debian Wheezy
I digged a little more about the issue just now, and i now know exactly what's wrong. I've the package nginx v1.8.1-1~wheezy, but i also have installed nginx-common and nginx-full both...
View ArticleRe: Stop apt-get from trying to downgrade nginx on Debian Wheezy
You should be able to do that, yes. The nginx repo installs what it needs on its own and I'd wager those packages aren't necessary. See what happens when you run "apt-get remove nginx-common". Most...
View ArticleNginx and real client ip
Hellow... I know, it may be du(...)plicated question... But... I'm in rage.. Sorry for enyone inconvinience And I can't find neither solution neither clear possibility absence of it. As i'm right,...
View ArticleServing location after redirect from other domain
Hi, I have a problem, and am unable to get what I want, even after many searches here and in Google. Don't know if it is even possible. I recently got a domainname ((www.)hanslammerts.nl). On this...
View Articlenginx "file not found" with index.php
hello, I installed nginx in my ubuntu machine, php and fcgiwrap. I made many modifies to config files to resolv many issues (403, 404, 502) and now when I open "localhost/index.php" the error message...
View ArticleRe: nginx "file not found" with index.php
this is my /etc/nginx/sites-enabled/default file server { listen 80; server_name localhost; # fast cgi support include /etc/nginx/fcgiwrap.conf; location / { root...
View ArticleHow to validate against S3 for file existance
I want to use NGINX as a director where the following logic would take place: + Request for an asset comes from the web ++ Taking the path of the file - check if this file is already under my s3 bucket...
View ArticleRe: Stop apt-get from trying to downgrade nginx on Debian Wheezy
Thanks for your answer. I just did that. Afterwards I did a configtest and it was all good, the reload failed but it was probably just that nginx was stopped while apt removed nginx-common and...
View ArticleRe: nginx "file not found" with index.php
Hello, I'm not certain why you are using fcgiwrap. That is a wrapper for cgi scripts. I'm guessing that you are using php-fpm listening on 127.0.0.1:9000. Unless you are also using some actual cgi...
View ArticleRe: Nginx and real client ip
Hello, In order to do so you must enable the ngx_http_realip_module when compiling. See http://nginx.org/en/docs/http/ngx_http_realip_module.html The following is a snippet from a working...
View ArticleRe: Serving location after redirect from other domain
Hello, I'm not sure what kind of redirect service you are using, but I see frames using curl: # curl hanslammerts.nl/phpmyadmin <!DOCTYPE html> <html> <head>...
View ArticleRe: nginx "file not found" with index.php
ok it's all ok. now I need to change my root directory for my web proj. infact this is part of my /etc/nginx/sites-enabled/default file server { listen 80; listen [::]:80 default_server ipv6only=on;...
View ArticleRe: nginx "file not found" with index.php
with root /home/ottaviane/Sviluppo/Progetti/HTML-PHP/html; it does'nt work! firefox tells "500 Internal Server Error" and in nginx.log I can read: 2016/02/29 10:06:45 [crit] 5146#0: *3 stat()...
View Article