Giter Site home page Giter Site logo

Comments (4)

MattIPv4 avatar MattIPv4 commented on May 27, 2024

What does your listen definition(s) look like after running that first sed command?
What OS are you on?

from nginxconfig.io.

maskeynihal avatar maskeynihal commented on May 27, 2024
server {
    ssl off;
    listen                  443; # ssl http2;
    listen                  [::]:443; # ssl http2;
    server_name             example-server.example.com;
    set                     $base /var/www/example-server.example.com;
    root                    $base/current/public;

    # SSL
    #;#ssl_certificate         /etc/letsencrypt/live/example-server.example.com/fullchain.pem;
    #;#ssl_certificate_key     /etc/letsencrypt/live/example-server.example.com/privkey.pem;
    #;#ssl_trusted_certificate /etc/letsencrypt/live/example-server.example.com/chain.pem;

    # security
    include                 nginxconfig.io/security.conf;

    # logging
    access_log              /var/log/nginx/access.log combined buffer=512k flush=1m;
    error_log               /var/log/nginx/error.log warn;

    # index.php
    index                   index.php;

    # index.php fallback
    location / {
        try_files $uri $uri/ /index.php?$query_string;
    }

    # additional config
    include nginxconfig.io/general.conf;

    # handle .php
    location ~ \.php$ {
        fastcgi_pass unix:/var/run/php/php8.2-fpm.sock;
        include      nginxconfig.io/php_fastcgi.conf;
    }
}

# subdomains redirect
server {
    ssl off;
    listen                  443; # ssl http2;
    listen                  [::]:443; # ssl http2;
    server_name             *.example-server.example.com;

    # SSL
    #;#ssl_certificate         /etc/letsencrypt/live/example-server.example.com/fullchain.pem;
    #;#ssl_certificate_key     /etc/letsencrypt/live/example-server.example.com/privkey.pem;
    #;#ssl_trusted_certificate /etc/letsencrypt/live/example-server.example.com/chain.pem;
    return                  301 https://example-server.example.com$request_uri;
}

# HTTP redirect
server {
    ssl off;
    listen      80;
    listen      [::]:80;
    server_name .example-server.example.com;
    include     nginxconfig.io/letsencrypt.conf;

    location / {
        return 301 https://example-server.example.com$request_uri;
    }
}

OS:
Distributor ID: Ubuntu
Description: Ubuntu 20.04.6 LTS
Release: 20.04
Codename: focal

nginx version: nginx/1.24.0

from nginxconfig.io.

maskeynihal avatar maskeynihal commented on May 27, 2024

I created a new config today, and the new config is working fine.

from nginxconfig.io.

MattIPv4 avatar MattIPv4 commented on May 27, 2024

Closing as not reproducible -- the shared config has no active listen ssl in it.

from nginxconfig.io.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.