Hello Team,
Is it possible to use Module ngx_http_limit_req_module to rate limit
request / day ?
Regards,
Nitin B.
___
nginx mailing list
nginx@nginx.org
http://mailman.nginx.org/mailman/listinfo/nginx
Hello,
I need to configure some locations go to index.php rest go to index.html
if ($request_uri !~ ^/(location1|location2|location3)$ ) {
rewrite ^(.*) /index.html;
}
but how to else ?
if the request contains location1, location2, location3 goes to
fastcgi_pass 127.0.0.1:900
Why not use the location directive? This is what it is designed for.
http://nginx.org/en/docs/http/ngx_http_core_module.html#location
On Mon, Oct 3, 2016 at 12:28 PM, Tseveendorj Ochirlantuu <
tseveend...@gmail.com> wrote:
> Hello,
>
> I need to configure some locations go to index.php rest go
This is for symfony2 project.
location ~ /location1 {
fastcgi things;
}
location ~ /location2 {
fastcgi things;
}
location ~ /location3 {
fastcgi things;
}
location / {
index index.html;
}
Above examples how fit to symfony2 below. Mine is
# dev
location ~ ^(app_dev|config)\.php$
In our site we are loading a calnedar api function that works on http (
cdn.instantcal.com) . While loading this site on our wordpress site with
https its not working and getting an error:
"Mixed Content: The page at '
https://www.geo.com/wp-admin/post.php?post=362&action=edit' was loaded over
HTT
Hi, please use $scheme
proxy_set_header X-Forwarded-Proto $scheme;
2016-10-03 16:58 GMT+03:00 Geo P.C. :
> In our site we are loading a calnedar api function that works on http (
> cdn.instantcal.com) . While loading this site on our wordpress site with
> https its not working and getting an erro
Hello team,
i've followed this
tutorial(https://www.c-rieger.de/nextcloud-installation-guide/) to configure
nginx for nextcloud on a raspberry pi 3 but using Raspbian OS instead of
Ubuntu.
I guess the only specific thing in this installation is that we used
"ngx_cache_purge-2.3" args to compile n
Hello!
On Mon, Oct 03, 2016 at 11:04:39AM -0400, smaig wrote:
> i've followed this
> tutorial(https://www.c-rieger.de/nextcloud-installation-guide/) to configure
> nginx for nextcloud on a raspberry pi 3 but using Raspbian OS instead of
> Ubuntu.
>
> I guess the only specific thing in this insta