AMH 社区首页
AMH社区 - 开放自由有价值的社区
[求助帖] 请问子域名总是400错误怎么回事呢? |
|
---|---|
zyk715 |
zyk715 发表于 2015-12-30 22:38:53
本帖最后由 zyk715 于 2015-12-30 22:44 编辑
请问该如何解决呢? user www www;
worker_processes auto; error_log /home/wwwroot/index/log/nginx_error.log crit; pid /usr/local/nginx/logs/nginx.pid; #Specifies the value for maximum file descriptors that can be opened by this process. worker_rlimit_nofile 51200; events { use epoll; worker_connections 51200; } http { include mime.types; default_type application/octet-stream; server_names_hash_bucket_size 128; client_header_buffer_size 32k; large_client_header_buffers 4 32k; client_max_body_size 50m; sendfile on; tcp_nopush on; keepalive_timeout 60 60; fastcgi_connect_timeout 300; fastcgi_send_timeout 300; fastcgi_read_timeout 300; fastcgi_buffer_size 16k; fastcgi_buffers 16 16k; fastcgi_busy_buffers_size 16k; fastcgi_temp_file_write_size 16k; fastcgi_intercept_errors on; tcp_nodelay on; server_tokens off; gzip on; gzip_min_length 1000; gzip_proxied expired no-cache no-store private auth; gzip_types text/plain text/css text/xml text/javascript application/x-javascript application/xml application/rss+xml application/xhtml+xml application/atom_xml; gzip_disable "MSIE [1-6].(?!.*SV1)"; log_format access '$remote_addr - $remote_user [$time_local] "$request" ' '$status $body_bytes_sent "$http_referer" ' '"$http_user_agent" $http_x_forwarded_for'; include vhost/*.conf; server { listen 51715; server_name *.badu.com www.baidu.com baidu.com 115.28.175.235; index index.html index.htm index.php; root /home/wwwroot/index/web; if ( $host != '*.baidu.com' ) { return 400; } fastcgi_buffer_size 40k; fastcgi_buffers 8 40k; fastcgi_busy_buffers_size 40k; gzip on; location ~ .*\.php$ { fastcgi_pass unix:/tmp/php-cgi.sock; fastcgi_index index.php; include fcgi.conf; } location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|js|css)$ { expires 30d; gzip on; fastcgi_intercept_errors on; sendfile on; tcp_nodelay on; gzip_min_length 16k; gzip_buffers 4 16k; gzip_comp_level 2; gzip_types text/plain text/css text/xml text/vnd.wap.wml text/x-component application/x-javascript image/gif image/jpeg application/atom+xml application/rss+xml application/octet-stream application/x-rar-compressed; gzip_vary on; } location ~ .*\.(js|css)?$ { expires 30d; } access_log /home/wwwroot/index/log/access.log combined; error_log /home/wwwroot/index/log/error.log crit; } server { listen 8080 default; return 400; } }
点赞,加油! (0分)
2015-12-30 22:38:53 1
|
dongshan8 |
楼主您好,
请参考您另一张帖子里的回复:http://amh.sh/bbs/post-8410-1-1.htm
回复
2016-01-08 19:58:40 2
|