1:nginx.conf檔案內容如下:
worker_processes 4; //指4核心cpu
events {
worker_connections include mime. types;
default_type application/octet-stream;
log_format main '$remote_addr - $ '$status $body_bytes_sent "$http_referer" '
';
sendfile on;//傳輸檔案加速
include /opt/ nginx/conf/vhost/*;//包含多個設定的網站,下列舉例:b2b.conf與auto.conf
}
2:b2b.conf檔案內容如下:
server {
listen www.b2bxxx.cn b2bxxx.cn ;
location/ {//網站首頁
}
root /opt;
}
location ~ .*$ {
location ~ .*.(gif|jpg|jpeg|png |bmp|swf|mp4)$ {
}
lo }
;//快取3小時
}
expires 5m;//快取5分鐘
}
}
3:auto.conf 內容如下:
server {
listen cation ^~ /auto_static/ {
root /opt;
}
location ~ .*$ {
proxy_pass 下ainCtrl?page=IndexPage last; //首頁跳轉
}
location ~ .*.(gif|jpg|jpeg|png|
location ~ .*.(js|css)?$ {
expires 3h;
}
版權聲明:本文為部落客原創文章,未經博主允許不得轉載。
以上就介紹了nginxconf配置說明,包括了方面的內容,希望對PHP教程有興趣的朋友有幫助。