Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/delphi/8.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
带有mod_代理和apache的Ghost{{@blog.url}端口_Apache_Mod Proxy_Ghost Blog - Fatal编程技术网

带有mod_代理和apache的Ghost{{@blog.url}端口

带有mod_代理和apache的Ghost{{@blog.url}端口,apache,mod-proxy,ghost-blog,Apache,Mod Proxy,Ghost Blog,我正在运行ghost博客,前面是apache。我使用反向代理将端口从80连接到本地端口。这工作正常,但{{@blog.url}}标记返回具有本地端口的超链接。所以,一旦我点击@blog.url生成的链接,我就有了本地端口的url 我怎样才能摆脱这个 httpd.conf中的我的VirtualHost配置: <VirtualHost *:80> ServerName domain.com ServerAlias domain.com www.domain.com Pr

我正在运行ghost博客,前面是apache。我使用反向代理将端口从80连接到本地端口。这工作正常,但{{@blog.url}}标记返回具有本地端口的超链接。所以,一旦我点击@blog.url生成的链接,我就有了本地端口的url

我怎样才能摆脱这个

httpd.conf中的我的VirtualHost配置:

<VirtualHost *:80>
   ServerName domain.com
   ServerAlias domain.com www.domain.com
   ProxyRequests Off
   ProxyVia Off
   ProxyPass / http://localhost:8080/
   ProxyPassReverse / http://localhost:8080/
</VirtualHost>

能否添加echo$NODE_ENV的输出并演示如何启动Ghost?我重新启动了Ghost,它解决了问题。
// # Ghost Configuration
// Setup your Ghost install for various environments

var path = require('path'),
    config;

config = {
    // ### Development **(default)**
    development: {
        // The url to use when providing links to the site, E.g. in RSS and emai                                            l.
        url: 'http://domain.com',

                mail: {
                    transport: 'SMTP',
                    options: {
                        service: 'Gmail',
                        auth: {
                            user: 'email@gmail.com',
                            pass: 'password'
                                 }
                            }
                        },

        database: {
            client: 'sqlite3',
            connection: {
                filename: path.join(__dirname, '/content/data/ghost-dev.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 se                                            t this to `process.env.PORT`
            port: '8080'
        }
    },

    // ### Production
    // When running Ghost in the wild, use the production environment
    // Configure your URL and mail settings here
    production: {
        url: 'http://my-ghost-blog.com',
        mail: {},
        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 se                                            t this to `process.env.PORT`
            port: '2368'
        }
    },

    // **Developers only need to edit below here**

    // ### Testing
    // Used when developing Ghost to run tests and check the health of Ghost
    // Uses a different port number
    testing: {
        url: 'http://127.0.0.1:2369',
        database: {
            client: 'sqlite3',
            connection: {
                filename: path.join(__dirname, '/content/data/ghost-test.db')
            }
        },
        server: {
            host: '127.0.0.1',
            port: '2369'
        }
    },

    // ### Travis
    // Automated testing run through GitHub
    'travis-sqlite3': {
        url: 'http://127.0.0.1:2369',
        database: {
            client: 'sqlite3',
            connection: {
                filename: path.join(__dirname, '/content/data/ghost-travis.db')
            }
        },
        server: {
            host: '127.0.0.1',
            port: '2369'
        }
    },

    // ### Travis
    // Automated testing run through GitHub
    'travis-mysql': {
        url: 'http://127.0.0.1:2369',
        database: {
            client: 'mysql',
            connection: {
                host     : '127.0.0.1',
                user     : 'travis',
                password : '',
                database : 'ghost_travis',
                charset  : 'utf8'
            }
        },
        server: {
            host: '127.0.0.1',
            port: '2369'
        }
    },

    // ### Travis
    // Automated testing run through GitHub
    'travis-pg': {
        url: 'http://127.0.0.1:2369',
        database: {
            client: 'pg',
            connection: {
                host     : '127.0.0.1',
                user     : 'postgres',
                password : '',
                database : 'ghost_travis',
                charset  : 'utf8'
            }
        },
        server: {
            host: '127.0.0.1',
            port: '2369'
        }
    }
};

// Export config
module.exports = config;