Nginx configuration section in linux

Source: Internet
Author: User

In linux, The nginx configuration section Nginx configuration section Event {// generally configures the nginx process and connection features. // For example, worker_connections 1024 works simultaneously; // This indicates that a sub-process can connect up to 1024 connections} http {// This is the main segment of the http server configured Server1 {// This is the virtual host segment Location {// Location, locate a special path or file again, for example, the image directory is processed separately} // for example. php processing separately} Server2 {}} Example 1: domain name-based virtual host server {listen 80; # listening port server_name a.com; # monitor domain name location/{root/var/www/a.com; # locate index index.html in the root directory;} Example 2: configure server {listen 8080; server_name 192.168.1.204 for Port-based virtual hosts; location/{root/var/www/html8080; index index.html ;}}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.