|
|
server
{
listen 80;
server_name ouw.com;
index index.html index.htm index.php;
root /home/wwwroot;
error_page 404 = /404.html;
include discuzx.conf;
location ~ .*\.(php|php5)?$
{
fastcgi_pass unix:/tmp/php-cgi.sock;
fastcgi_index index.php;
include fcgi.conf;
}
|
|