lnmp下的nginx代理
阿新 • • 發佈:2018-02-08
send work 代理 enter pat pid style -i default 修改nginx.conf文件,刪除一下內容,配置默認虛擬主機:
創建虛擬主機配置目錄 }
}
恭喜,lnmp 已安裝成功!
創建虛擬主機配置目錄
mkdir /etc/nginx/vhost``
server
{
listen 80;
server_name localhost;
index index.html index.htm index.php;
root /data/www;
location ~ .php$
{
include fastcgi_params;
fastcgi_pass unix:/tmp/php-fcgi.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /data/www$fastcgi_script_name;
}
增加
include vhost/*.conf
修改後的nginx配置文件內容
user nginx nginx; worker_processes 2; error_log /var/log/nginx/error.log crit; pid /var/run/nginx.pid; worker_rlimit_nofile 51200; events { use epoll; worker_connections 6000; } http { include mime.types; default_type application/octet-stream; server_names_hash_bucket_size 3526; server_names_hash_max_size 4096; log_format combined_realip ‘$remote_addr $http_x_forwarded_for [$time_local]‘ ‘ $host "$request_uri" $status‘ ‘ "$http_referer" "$http_user_agent"‘; sendfile on; tcp_nopush on; keepalive_timeout 30; client_header_timeout 3m; client_body_timeout 3m; send_timeout 3m; connection_pool_size 256; client_header_buffer_size 1k; large_client_header_buffers 8 4k; request_pool_size 4k; output_buffers 4 32k; postpone_output 1460; client_max_body_size 10m; client_body_buffer_size 256k; client_body_temp_path /tmp/nginx/client_body; proxy_temp_path /tmp/nginx/proxy; fastcgi_temp_path /tmp/nginx/fastcgi; fastcgi_intercept_errors on; tcp_nodelay on; gzip on; gzip_min_length 1k; gzip_buffers 4 8k; gzip_comp_level 5; gzip_http_version 1.1; gzip_types text/plain application/x-javascript text/css text/htm application/xml; include vhost/*.conf; }
vim /etc/nginx/vhost/default.conf server { listen 80; server_name oceanwing.com; index index.html index.htm index.php; root /data/www/default; location ~ \.php$ { include fastcgi_params; fastcgi_pass unix:/tmp/php-fcgi.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME /data/www/default$fastcgi_script_name; } } nginx -t #檢查配置文件是否正確 nginx -s reload #重加載nginx配置 mkdir -p /data/www/default/ mv /data/www/*.php /data/www/default
curl -x 127.0.0.1:80 oceanwing.com
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/tr/html4/loose.dtd">
<html>
<head>
<title>LNMP</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="author" content="Gavin Zhao">
<meta name="keywords" content="Centos7服務器">
<meta name="description" content="">
<link rel="shortcut icon" href="favicon.ico" type="image/ico">
<style type="text/css">
查看服務器WEB環境:探針信息 phpinfo信息
為安全起見,本頁可刪除或重命名