- 积分
- 2
- 威望
-
- 金钱
-
- 注册时间
- 2011-8-30
- 在线时间
- 小时
- 最后登录
- 1970-1-1
|
求救!! 急!! 求。。。
问题: nginx反向代理 discuz 2.0不能发帖
apache 88端口网站: http://web.ahbb.com:88
nginx 80端口反向代理域名: http://web.ahbb.com
测试账号 admin admin
http.conf 配置:
-
- ServerRoot "/usr/local/apache"
- Listen 88
- <IfModule !mpm_netware_module>
- <IfModule !mpm_winnt_module>
- User www
- Group www
- </IfModule>
- </IfModule>
- #ServerName ahbb.com:88
- DocumentRoot "/home/wwwroot"
- <Directory />
- Options ExecCGI FollowSymLinks Includes IncludesNOEXEC -Indexes -MultiViews SymLinksIfOwnerMatch
- AllowOverride All
- Order allow,deny
- Allow from all
- </Directory>
- <Directory "/home/wwwroot">
- Options Indexes -Indexes FollowSymLinks
- #
- # AllowOverride controls what directives may be placed in .htaccess files.
- # It can be "All", "None", or any combination of the keywords:
- # Options FileInfo AuthConfig Limit
- #
- AllowOverride All
- #
- # Controls who can get stuff from this server.
- #
- Order allow,deny
- Allow from all
- </Directory>
- #
- # DirectoryIndex: sets the file that Apache will serve if a directory
- # is requested.
- #
- <IfModule dir_module>
- DirectoryIndex index.html index.htm index.shtml index.php index.perl index.pl index.cgi
- </IfModule>
- #
- # The following lines prevent .htaccess and .htpasswd files from being
- # viewed by Web clients.
- #
- <FilesMatch "^\.ht">
- Order allow,deny
- Deny from all
- Satisfy All
- </FilesMatch>
- ErrorLog "logs/error_log"
- LogLevel warn
- <IfModule log_config_module>
- LogFormat "%h %l %u %t "%r" %>s %b "%{Referer}i" "%{User-Agent}i"" combined
- LogFormat "%h %l %u %t "%r" %>s %b" common
- <IfModule logio_module>
- # You need to enable mod_logio.c to use %I and %O
- LogFormat "%h %l %u %t "%r" %>s %b "%{Referer}i" "%{User-Agent}i" %I %O" combinedio
- </IfModule>
- CustomLog "logs/access_log" common
- #CustomLog "logs/access_log" combined
- </IfModule>
- <IfModule alias_module>
- ScriptAlias /cgi-bin/ "/usr/local/apache/cgi-bin/"
- </IfModule>
- <IfModule cgid_module>
- </IfModule>
- <Directory "/usr/local/apache/cgi-bin">
- AllowOverride None
- Options None
- Order allow,deny
- Allow from all
- </Directory>
- #
- # DefaultType: the default MIME type the server will use for a document
- # if it cannot otherwise determine one, such as from filename extensions.
- # If your server contains mostly text or HTML documents, "text/plain" is
- # a good value. If most of your content is binary, such as applications
- # or images, you may want to use "application/octet-stream" instead to
- # keep browsers from trying to display binary files as though they are
- # text.
- #
- DefaultType text/plain
- RewriteEngine on
- AddType text/html .shtml
- AddHandler cgi-script .cgi .pl .plx .ppl .perl
- AddHandler server-parsed .shtml
- <IfModule mime_module>
- #
- # TypesConfig points to the file containing the list of mappings from
- # filename extension to MIME-type.
- #
- TypesConfig conf/mime.types
- #
- # AddType allows you to add to or override the MIME configuration
- # file specified in TypesConfig for specific file types.
- #
- #AddType application/x-gzip .tgz
- #
- # AddEncoding allows you to have certain browsers uncompress
- # information on the fly. Note: Not all browsers support this.
- #
- #AddEncoding x-compress .Z
- #AddEncoding x-gzip .gz .tgz
- #
- # If the AddEncoding directives above are commented-out, then you
- # probably should define those extensions to indicate media types:
- #
- AddType application/x-compress .Z
- AddType application/x-gzip .gz .tgz
- #
- # AddHandler allows you to map certain file extensions to "handlers":
- # actions unrelated to filetype. These can be either built into the server
- # or added with the Action directive (see below)
- #
- # To use CGI scripts outside of ScriptAliased directories:
- # (You will also need to add "ExecCGI" to the "Options" directive.)
- #
- #AddHandler cgi-script .cgi
- # For type maps (negotiated resources):
- #AddHandler type-map var
- #
- # Filters allow you to process content before it is sent to the client.
- #
- # To parse .shtml files for server-side includes (SSI):
- # (You will also need to add "Includes" to the "Options" directive.)
- #
- #AddType text/html .shtml
- #AddOutputFilter INCLUDES .shtml
- AddType application/perl .pl .plx .ppl .perl
- AddType application/x-img .img
- AddType application/x-httpd-php .php .php3 .php4 .php5 .php6
- AddType application/x-httpd-php-source .phps
- AddType application/cgi .cgi
- AddType text/x-sql .sql
- AddType text/x-log .log
- AddType text/x-config .cnf conf
- AddType text/x-registry .reg
- AddType text/html .shtml
- AddType application/x-tar .tgz
- AddType application/rar .rar
- AddType application/x-compressed .rar
- AddType application/x-rar .rar
- AddType application/x-rar-compressed .rar
- AddType text/vnd.wap.wml .wml
- </IfModule>
- #
- # The mod_mime_magic module allows the server to use various hints from the
- # contents of the file itself to determine its type. The MIMEMagicFile
- # directive tells the module where the hint definitions are located.
- #
- #MIMEMagicFile conf/magic
- #
- # Customizable error responses come in three flavors:
- # 1) plain text 2) local redirects 3) external redirects
- #
- # Some examples:
- #ErrorDocument 500 "The server made a boo boo."
- #ErrorDocument 404 /missing.html
- #ErrorDocument 404 "/cgi-bin/missing_handler.pl"
- #ErrorDocument 402 http://www.example.com/subscription_info.html
- #
- #
- # EnableMMAP and EnableSendfile: On systems that support it,
- # memory-mapping or the sendfile syscall is used to deliver
- # files. This usually improves server performance, but must
- # be turned off when serving from networked-mounted
- # filesystems or if support for these functions is otherwise
- # broken on your system.
- #
- #EnableMMAP off
- #EnableSendfile off
- # LoadModule perl_module modules/mod_perl.so
- LoadModule php5_module modules/libphp5.so
- Include conf/extra/rpaf.conf
- # Supplemental configuration
-
- Include conf/extra/httpd-mpm.conf
- Include conf/extra/httpd-multilang-errordoc.conf
- Include conf/extra/httpd-autoindex.conf
- Include conf/extra/httpd-languages.conf
- Include conf/extra/httpd-info.conf
- Include conf/extra/httpd-vhosts.conf
- Include conf/extra/httpd-default.conf
- Include conf/vhost/*.conf
-
复制代码
apache虚拟主机配置:
- ServerAdmin webmaster@example.com
- php_admin_value open_basedir "/home/wwwroot:/tmp/:/var/tmp/:/proc/"
- DocumentRoot "/home/wwwroot"
- ServerName test.ahbb.com
- ServerAlias web.ahbb.com
- #ErrorLog "logs/-error_log"
- #CustomLog "logs/-access_log" common
复制代码
nginx配置文件:
- user www www;
- worker_processes 1;
- error_log /home/wwwlogs/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;
- tcp_nodelay on;
- fastcgi_connect_timeout 300;
- fastcgi_send_timeout 300;
- fastcgi_read_timeout 300;
- fastcgi_buffer_size 64k;
- fastcgi_buffers 4 64k;
- fastcgi_busy_buffers_size 128k;
- fastcgi_temp_file_write_size 256k;
- gzip on;
- gzip_min_length 1k;
- gzip_buffers 4 16k;
- gzip_http_version 1.0;
- gzip_comp_level 2;
- gzip_types text/plain application/x-javascript text/css application/xml;
- gzip_vary on;
- #limit_zone crawler $binary_remote_addr 10m;
- include vhost/*.conf;
- }
复制代码
nginx虚机配置:
- server
- {
- listen 80;
- server_name test.ahbb.com web.ahbb.com;
- index index.html index.htm index.php default.html default.htm default.php;
- root /home/wwwroot;
- location / {
- try_files $uri @apache;
- }
- location @apache {
- internal;
- proxy_pass http://127.0.0.1:88;
- include proxy.conf;
- }
- location ~ .*\.(php|php5)?$
- {
- proxy_pass http://127.0.0.1:88;
- include proxy.conf;
- }
- location ~ .*\.(js|css)?$
- {
- expires 12h;
- }
- access_log off;
- }
复制代码 |
|