JOE个人网站

JOE个人网站,不仅仅是一个网站,更像是一个展现自我的平台,致力于让朋友们都可以
有所感触,有所收获。

Nginx配置其他端口

2017-12-19 11:22:16
server {
    listen 8084;
    server_name localhost;
    index index.html index.htm index.php;
    root /home/dreamswood/work/dci/admin_server;
    error_page 404 /404.html
    location ~ .*\.(php|php5)?$
    {
      #fastcgi_pass unix:/tmp/php-cgi.sock;
      fastcgi_pass    127.0.0.1:9000;
      fastcgi_index    index.php;
      fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
      fastcgi_intercept_errors on;
      include fastcgi.conf;
    }

    location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
    {
      expires 30d;
    }

    location ~ .*\.(js|css)?$
    {
      expires 1h;
    }
}