JIYIK CN >

Current Location:Home > Learning > NETWORK >

Nginx is running but not serving sites

Author:JIYIK Last Updated:2025/03/17 Views:

We recently installed nginx version 1.17 on a new machine. sites-availableThe configuration created in was symlinked to sites-enabled, but nginx is not serving any domain names.

The key point here is that nginx uses different directories conf.dto store a variety of defaultconfigurations. This configuration matches all incoming requests and takes over the processing of all requests and responses.

How nginx configuration works

Nginx sites-availablekeeps configurations located in the directory private and does not route them to the Internet. Adding configuration to sites-enabledthe directory will make it publicly available.

Nginx allows us to support multiple location configuration files. The second way to configure domains: conf.ddirectories.

The difference here is: conf.dany file located in the directory will be picked up by nginx and routed to the Internet. If you want to make a domain name inaccessible, you must delete the configuration for that domain from the conf.d folder.


Check nginx configuration

Check if there is a conf.d directory in /etc/nginx that contains the default configuration .

If the conf.d directory exists, you should check if nginx's configuration contains sites-enabledthe folder:

$ nano /etc/nginx/nginx.conf  

We are interested in nginx's virtual host configuration. Nginx will probably search for configuration in the conf.dand sites-enableddirectories. Depending on the order, nginx might find the "gotta catch 'em all" configuration first.

The contents of our nginx.conf file might look like this:

user www-data;  
worker_processes auto;  
pid /run/nginx.pid;

events {  
        worker_connections 768;
}

http {  
        sendfile on;
        tcp_nopush on;

        ##
        # 虚拟主机配置
        ##
        include /etc/nginx/conf.d/*.conf;
        include /etc/nginx/sites-enabled/*;  # <-- 如果希望“sites-enabled”工作,请确保此行有效
}

If we place configuration files for our domains in the sites-availableand sites-enableddirectories, conf.dthe default configuration from may override them.

For reprinting, please send an email to 1244347461@qq.com for approval. After obtaining the author's consent, kindly include the source as a link.

Article URL:

Related Articles

PHP+ajax to achieve cross-domain single sign-on

Publish Date:2025/03/16 Views:145 Category:NETWORK

We have previously introduced the principle of cross-domain single sign-on in "Detailed explanation of the implementation methods of three situations of SSO single sign-on" . Here we will introduce how to implement single sign-on using PHP

WeChat public account development tutorial to obtain access_token

Publish Date:2025/03/16 Views:65 Category:NETWORK

During the development of WeChat official accounts, if we want to actively push messages to the WeChat server, we must have access_token. Access_token is the only ticket for the official account. When we develop and call various WeChat inte

WeChat public account receiving message event message processing

Publish Date:2025/03/16 Views:79 Category:NETWORK

As we know, there are two types of messages generated by the interaction between WeChat users and public accounts: one is ordinary messages, which are introduced in detail in the article "Ordinary message processing for WeChat public accoun

IE's Ajax cross-domain issue

Publish Date:2025/03/16 Views:190 Category:NETWORK

Ajax is widely used in web systems, but cross-domain issues are often encountered in web systems. By default, browsers prohibit Ajax cross-domain access. The IE browser has particularly strict restrictions. For browsers such as Firefox, Goo

How to redirect a website from HTTP to HTTPS

Publish Date:2025/03/16 Views:117 Category:NETWORK

HTTPS is a protocol for secure communication over computer networks and is widely used on the Internet. More and more website owners are migrating from HTTP to HTTPS, mainly due to the following 5 reasons: Google announced that websites usi

How to Fix the “SSL Handshake Failed” Error (5 Methods)

Publish Date:2025/03/16 Views:96 Category:NETWORK

Installing a Secure Sockets Layer (SSL) certificate on your WordPress site enables it to use HTTPS for a secure connection. Unfortunately, there are a lot of things that can go wrong in the process of verifying a valid SSL certificate and e

10 Ways to Fix NET::ERR_CERT_DATE_INVALID Error

Publish Date:2025/03/16 Views:136 Category:NETWORK

Having an SSL certificate gives people more peace of mind when using your website. When the NET::ERR_CERT_DATE_INVALID error indicates a problem with the certificate, it blocks visitors from accessing your website until the problem is fixed

Scan to Read All Tech Tutorials

Social Media
  • https://www.github.com/onmpw
  • qq:1244347461

Recommended

Tags

Scan the Code
Easier Access Tutorial