About 589,000 results
Open links in new tab
  1. Adding cipher suites to nginx config the right way

    Jan 3, 2020 · ssl_ciphers: all the ciphers for TLS 1.2. ssl_prefer_server_ciphers off: let the client choose the most performant cipher suite for their hardware configuration among the ciphers the server is …

  2. Nginx config reload without downtime - Server Fault

    Apr 11, 2012 · 326 Run service nginx reload, /etc/init.d/nginx reload, /usr/sbin/nginx -s reload or /usr/sbin/nginx reload It will do a hot reload of the configuration without downtime. If you have …

  3. How can I use environment variables in Nginx.conf - Server Fault

    Feb 21, 2014 · From the official Nginx docker file: Using environment variables in nginx configuration: Out-of-the-box, Nginx doesn't support using environment variables inside most configuration blocks. …

  4. Dump nginx config from running process? - Server Fault

    Feb 18, 2012 · Newer nginx versions have the -T option to dump the nginx config read from all nginx config files, not from memory: nginx -T This can be useful to confirm that a config file is being read, …

  5. how can i change nginx Configuration file path - Server Fault

    /usr/sbin/nginx -V shows the initial configure script parameters, not necessarily the actual parameters that are running. To use an alternative configuration file, instead on the default one, you can set the …

  6. How to if/else statement with nginx conf? - Server Fault

    The Nginx rewrite module do have if directive (see the linked documentation for examples), but not else. The equivalent for else would be all that isn't modified with an if. You can use if inside a server { } but …

  7. Nginx enable site command - Server Fault

    Just create this script /usr/bin/nginx_modsite and make it executable with chmod 700 /usr/bin/nginx_modsite. #!/bin/bash ## # File: # nginx_modsite # Description: # Provides a basic …

  8. nginx configuration - make accessible from outside localhost

    nginx configuration - make accessible from outside localhost Ask Question Asked 14 years, 6 months ago Modified 5 years, 10 months ago

  9. nginx server directive is not allowed here

    The problem is here: } include v.hosts/*.conf; You have closed the http block before the include directive, thus ending the configuration. This is why none of the included files work. To fix the issue, include …

  10. Certbot failing on nginx reverse proxy: 404 - Server Fault

    Jun 23, 2024 · I am trying to setup a Mastodon instance on Ubuntu 22.04. I have setup Nginx as a reverse proxy and now I am trying to generate an SSL certificate with Let's Encrypt. When I run …