nginx中设置默认根目录问题
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx中设置默认根目录问题相关的知识,希望对你有一定的参考价值。
nginx中设置默认根目录问题,
location /
root html;
location /test
root /tmp;
这两个root目录怎么共存? 访问/test 目录的时候 到 这个 root /tmp 访问这个目录下面文件
现在冲突了,一直都到 root html 下面去找文件了!两个location 条件都成立了,
访问带/test/带路径,root /tmp 也无法生效,求解决
或者
location ~ \.(gif|jpg|jpeg|png|bmp|swf)$
root html;
expires 30d;
if ( !-f $request_filename )
root /var/www/html
if ( !-f $request_filename )
root /emp
break;
能看懂上面的例子么?
如何在 phpMyAdmin 中设置默认主题?
【中文标题】如何在 phpMyAdmin 中设置默认主题?【英文标题】:How do I set the default theme in phpMyAdmin? 【发布时间】:2016-12-12 05:02:18 【问题描述】:默认情况下,phpMyAdmin 中的“主题”选项仅影响主题设置更改的浏览器的主题(可能存储在 cookie 中?)。如何将特定主题设置为所有用户的默认主题?
【问题讨论】:
【参考方案1】:可以从 phpMyAdmin 安装的文档根目录中的 config.inc.php 文件中指定默认主题:
$cfg['ThemeDefault'] = 'original';
来源:http://www.wallpaperama.com/forums/_wxxram.html
【讨论】:
在 Linux 的 4.6.6 版本中,该文件位于libraries/config.default.php
【参考方案2】:
您可以在 config.inc.php 文件中更改文件路径。 您可以在此处设置有效的主题路径或原始 pma 主题的“原始”路径。
$cfg['ThemeDefault'] = 'original';
$cfg['ThemeDefault'] = 'pmahomme';
【讨论】:
以上是关于nginx中设置默认根目录问题的主要内容,如果未能解决你的问题,请参考以下文章