核心目錄
conf
nginx.conf
nginx.conf.default
html
50x.html
index.html
logs
error.log
nginx.pid
access.log
sbin
nginx
常見命令
./nginx
./nginx -s reload
./nginx -c /usr/local/nginx/conf/nginx.conf
./nginx -s stop
./nginx -t
./nginx -t -c /usr/local/nginx/conf/nginx.conf
基礎配置
#user nobody;
worker_processes 1;
# 全域性的配置,註釋的是預設
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
events {
use epoll; # linux加上這個, 採用epoll模式
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
# 預設的日誌模版叫man
#log_format main '$remote_addr - $remote_user [$time_local] "$request" '
# '$status $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"';
# 使用man日誌模版
#access_log logs/access.log main;
# sendfile 開啟高效傳輸
sendfile on;
#
#tcp_nopush on;
#keepalive_timeout 0;
keepalive_timeout 65; # 連線的超時時間
#gzip on; # 壓縮,省頻寬,耗效能
# server [port] --> localtion[uri] -->
server {
listen 80;
server_name localhost; # 域名,可以寫多個 空格隔開
#charset koi8-r;
#access_log logs/host.access.log main;
# 訪問 /, 先到html目錄下找到index.html 找不到就找index.htm
location / {
root html;
index index.html index.htm;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1; # 轉發
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all; # 拒絕訪問
#}
}
# another virtual host using mix of IP-, name-, and port-based configuration
#
#server {
# listen 8000;
# listen somename:8080;
# server_name somename alias another.alias;
# location / {
# root html;
# index index.html index.htm;
# }
#}
# HTTPS server
#
#server {
# listen 443 ssl;
# server_name localhost;
# ssl_certificate cert.pem;
# ssl_certificate_key cert.key;
# ssl_session_cache shared:SSL:1m;
# ssl_session_timeout 5m;
# ssl_ciphers HIGH:!aNULL:!MD5;
# ssl_prefer_server_ciphers on;
# location / {
# root html;
# index index.html index.htm;
# }
#}
}