标签:code 服务器 href gzip ext errors center erro file
修改nginx.conf文件,删除一下内容,配置默认虚拟主机:
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">
为安全起见,本页可删除或重命名