Javascript Ghost博客未创建RSS源

Javascript Ghost博客未创建RSS源,javascript,rss,ghost-blog,Javascript,Rss,Ghost Blog,建议我的ghost博客的rss提要可以在“exampleblog.com/rss”上找到。但是,当我尝试导航到'/rss'url时,抛出一个404。有没有关于我可能出错的建议 如果有帮助的话,该博客将托管在github页面上。以下是我在config.js中的生产设置: // ### Production // When running Ghost in the wild, use the production environment // Configure your URL and mail

建议我的ghost博客的rss提要可以在“exampleblog.com/rss”上找到。但是,当我尝试导航到'/rss'url时,抛出一个404。有没有关于我可能出错的建议

如果有帮助的话,该博客将托管在github页面上。以下是我在config.js中的生产设置:

// ### Production
// When running Ghost in the wild, use the production environment
// Configure your URL and mail settings here
production: {
    url: 'http://markbennett.io',

      mail: {
          transport: 'SMTP',
          options: {
              service: 'Mailgun',
              auth: {
                  user: '[removed]', // mailgun username
                  pass: '[removed]'  // mailgun password
              }
          }
      },
                    database: {
      client: 'sqlite3',
        connection: {
            filename: path.join(__dirname, '/content/data/ghost.db')
        },
        debug: false
    },
    server: {
        // Host to be passed to node's `net.Server#listen()`
        host: '127.0.0.1',
        // Port to be passed to node's `net.Server#listen()`, for iisnode set this to `process.env.PORT`
        port: '2368'
    }
}

看起来你的RSS在。请确保更新模板文件,并确保更新

中rss
标记的
href
,该标记看起来像GitHub pages 404而不是Ghost。确保url实际上是指向ghost应用程序的。