nginx is offline?
Good afternoon everyone. I am trying to setup a rtmp server using ningx. After following multiple guides I manage to get the welcome to nginx page when i put my ip address on the browser but when I go...
View ArticleNginx/Apache certificate renegotiation problem
Nginx v1.10.0 Apache v2.2.23 Hi guys I need to make a client side ssl authentication, between a NGINX (client) and an APACHE (server). My goal is to protect a specific location on my APACHE server...
View Articlenginx hls?
I am trying to follow the github read me to convert my rtmp stream into m3u8. https://github.com/arut/nginx-rtmp-module Unfortunately, my nginx server is not creating the m3u8 file within my temp...
View ArticleRemove context from backend
Hello. I've nginx + Glassfish, with this config: server { listen 80; server_name mydomain.com; location / { proxy_redirect off; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For...
View ArticleUse the "ssl_ecdh_curve" directive in nginx 1.11.0
Hi everyone, I'm using Nginx with LibreSSL 2.3.4 and I want to know if someone know how to use the "new" "ssl_ecdh_curve" directive in nginx 1.11.0 which allow to use more than one curve. Per example,...
View ArticleError 404 Nginx Wordpress permalinks
I get a plesk server with nginx and a website mydomain.com running Prestashop. It works fine. I recently installed wordpress in a sub-directory mydomain/blog/, works fine except when I enable...
View ArticleRight performance settings limit_req zone
Hello, Hello, i just migrated from Apache24 to Nginx. OS on server is FreeBSD 10.3 (amd64) with custom kernel. I have one strange problem - when i uncomment this line in nginx config: limit_req...
View ArticleRe: Use the "ssl_ecdh_curve" directive in nginx 1.11.0
I want to know that too And the official document is not updated yet to explain this feature http://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl_ecdh_curve
View ArticleRe: Use the "ssl_ecdh_curve" directive in nginx 1.11.0
Hi PikachuEXE, I found by myself. LibreSSL is not compatible with this feature so you have to build Nginx against openssl 1.0.2+ I've made a script that do that under Debian 8 with adding support for...
View ArticleRe: Use the "ssl_ecdh_curve" directive in nginx 1.11.0
Hi nicolassimond, Thanks for your info. I am using OpenSSL 1.0.2h What I want to know are - what's the syntax (which is included in your reply thx :D ) - How does Nginx use the config if multiple...
View ArticleECDSA+RSA: How to OCSP Stapling
nginx-1.11.0 got the new feature of supporting multiple certficates. Horray, finally! However, I don’t quite understand how this is supposed to work together with OCSP Stapling. Which certificates...
View Articlefastcgi_cache not caching
Hi, In my nginx.conf in http section I got: fastcgi_cache_path /var/cache/nginx/cache/heppler keys_zone=heppler:500m levels=1:2 inactive=600s max_size=100m; fastcgi_temp_path...
View Article.htaccess File Not Found Nginx Laravel
Hi there, I'm new in nginx i try to move from apache to nginx, my project work fine in apache but when i moved it to nginx i can't access to any URL with .htaccess but the home page index.php is ok i...
View ArticleSSL trust between NGINX and Apache
Sorry in advance if I missed any previous answer on that topic... I installed an Apache that is configured for SSL, using a self-signed certificate. In front of this machine, I have a running NGINX in...
View ArticleSimple Load Balancing on Windows
Hello everybody, I'm new to Nginx and I followed the instructions on the website to setup a very simple Load Balancer. I have a rest web service running on two servers on port 10002: -...
View ArticleRe: Simple Load Balancing on Windows
After changing the config make sure nginx is using it, taskkill nginx to be sure.
View ArticleRe: Simple Load Balancing on Windows
I have done that thank you. Any idea why it's looking for port 80? http://<server2 IP address>:80
View ArticleRe: Simple Load Balancing on Windows
80 is the default unless specified for each node, ea; upstream myLoadBalancer { server 127.0.0.1:9001 weight=1 fail_timeout=5; server 127.0.0.1:9002 weight=1 fail_timeout=5; }
View ArticleRe: Simple Load Balancing on Windows
Thank you! It works now, the trick was as you said to kill the process. NGINX -s reload doesn't work.
View Article