server
{
listen 80;
#listen [::]:80 default_server ipv6only=on;
server_name jiqing.dexin.com;
index index.html index.htm index.php admin.php;
root /home/wwwroot/default/dexin/dragon/public;
#error_page 404 /404.html;
include enable-php-pathinfo.conf;
location /nginx_status
{
stub_status on;
access_log off;
}
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
{
expires 30d;
}
location ~ .*\.(js|css)?$
{
expires 12h;
}
location ~ /\.
{
deny all;
}
/* 起作用
location / {
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=/$1 last;
}
}
*/
access_log /home/wwwlogs/access.log;
}
相关文章
- 11-28SpringBoot如何加载jar包外面的配置文件?
- 11-28Maven测试项目中,如何根据不同的JUnit版本,配置pom.xml文件以使用PowerMock的Mockito扩展
- 11-28SpringBoot是如何加载配置文件的?
- 11-28SpringBoot是如何加载配置文件的?
- 11-28nginx 配置文件存放思路
- 11-28nginx 配置文件
- 11-28如何使用Nginx实现在网页上共享文件
- 11-28nginx配置让任何文件在浏览器中显示文本text/plain
- 11-28nginx配置后只有根目录首页index.php能访问,其他页面404
- 11-28如何配置Spring值得applicationContext.xml配置文件