Basic configuration of Nginx server

Source: Internet
Author: User
Tags nginx server
: This article mainly introduces the basic configuration of the Nginx server. if you are interested in the PHP Tutorial, refer to it.
# For more information on configuration, see: # * Official English Documentation: http://nginx.org/en/docs/# * Official Russian Documentation: http://nginx.org/ru/docs/# System user account user www; # Number of nginx processes, generally set to the number of CPUs worker_processes 1; error_log/var/log/nginx/error. log; # error_log/var/log/nginx/error. log notice; # error_log/var/log/nginx/error. log info; pid/var/run/nginx. pid; events {worker_connections 1024; use epoll;} http {include/etc/nginx/mime. types; default_type application/octet-stream; log_format main '$ remote_addr-$ remote_user [$ time_local] "$ request" ''$ status $ response" $ http_referer "'' "$ http_user_agent" "$ http_x_forwarded_for "'; access_log/var/log/nginx/access. log main; sendfile on; # tcp_nopush on; # keepalive_timeout 0; keepalive_timeout 10; gzip on; client_body_temp_path/tmp/nginx 1 2; client_max_body_size 5 m; # Load config files from the/etc/nginx/conf. d directory # The default server is in conf. d/default. conf include/etc/nginx/conf. d /*. conf ;}

Copyright Disclaimer: This article is an original article by the blogger and cannot be reproduced without the permission of the blogger.

The above describes the basic configuration of the Nginx server, including some content, and hope to be helpful to friends who are interested in the PHP Tutorial.

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.