Bootstrap css无法加载资源错误404

时间:2016-11-14 15:18:32

标签: css nginx digital-ocean

首先,我很抱歉这个头衔。

我通过Digital Ocean Droplet部署了我的烧瓶应用程序,但是引导程序没有加载的问题。我已经在互联网上搜索了这个问题并尝试了几种方法,但没有用。

以下是我的代码片段。

的index.html

<!DOCTYPE html>
<head>
....
....
<link rel="icon" href="../static/icon/favicon.ico">
<link href="../static/css/bootstrap.min.css" rel="stylesheet">
<link href="../static/css/jumbotron.css" rel="stylesheet">
...
...
</head>

图标的链接效果很好但是对于css文件,它没有。

views.py

@app.route('/')
def index():
    return render_template('index.html')

的/ etc / nginx的/位点可用/ webapptest

server {
    listen 80;
    server_name <droplet_ip_address>;

    location / {
        include uwsgi_params;
        uwsgi_pass unix:/home/user1/project/webapptest/webapptest.sock;

    }
    location ^~ /static {
        root home/user1/project/webapptest/app/static;
    }

}

我正在关注此tutorial以在digitalocean上投放我的应用。我希望也许你们中的一些人可以帮助我解决这个问题。我相信我必须从这些代码中留下一些东西,但我不知道在哪里。

当我使用Google Chrome中的开发者工具检查时,错误看起来像这样:

failed to load resource:the server responded with a status of 404 (Not Found) http://<droplet ip address>/static/css/bootstrap.min.css 

感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

不确定那里发生了什么,但是从Maxi或jsDevlivr这样的免费CDN加载bootstrap会不会更容易?上次我有这样的东西,我没有加载缩小版本到服务器。

Sub removelastcommas() Dim i As Integer, str As String str = Range("A1") i = InStrRev(str, ",") ' comma found in A1 If i > 0 Then Range("B1") = Left(str, i - 1) & Right(str, Len(str) - i) Else ' comma not found in A1 Range("B1") = Range("A1") End If End Sub 更改为&gt;

href

如果您需要其他版本,只需将3.3.7更改为您需要的版本。