小编jam*_*.g.的帖子

未找到nginx位置404

这是我的nginx配置文件.

在default.conf中,第一个位置用于访问/ usr/share/nginx/html目录,当我访问http://47.91.152.99时可以.但是当我为目录/ usr/share/nginx/public目录添加一个新位置时,当我访问http://47.91.152.99/test时,nginx会返回404页面.

那么,怎么回事?我是否误用了nginx的指令?

/etc/nginx/nginx.conf

user  nginx;
worker_processes  1;

error_log  /var/log/nginx/error.log warn;
pid        /var/run/nginx.pid;


events {
    worker_connections  1024;
}


http {
    include       /etc/nginx/mime.types;
    default_type  application/octet-stream;

    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';

    access_log  /var/log/nginx/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    keepalive_timeout  65;

    #gzip  on;

    include /etc/nginx/conf.d/*.conf;
}


/etc/nginx/conf.d/default.conf
server {
    listen       80;
    server_name  localhost;

    #charset koi8-r;
    #access_log  /var/log/nginx/log/host.access.log  main;

    location / {
        root   /usr/share/nginx/html;
        index  index.html index.htm;
    }

    location …
Run Code Online (Sandbox Code Playgroud)

location nginx http-status-code-404

12
推荐指数
2
解决办法
4万
查看次数

如何在css中进行输入并选择相同的宽度

在我的页面中,有几个inputselect标签.

我用它width:100%;来定义它们的宽度,但浏览器中的宽度不是100%.

我在chrome中使用了调试工具,发现还应用了useragent样式表样式.

如何使宽度100%?

html css tags select input

8
推荐指数
1
解决办法
1万
查看次数

标签 统计

css ×1

html ×1

http-status-code-404 ×1

input ×1

location ×1

nginx ×1

select ×1

tags ×1