将站点指向nginx AWS

时间:2018-11-30 09:50:31

标签: wordpress amazon-web-services docker nginx

我有wordpress网站,我想用nginx将其上传到AWS。

我到目前为止尝试过的情况:

到目前为止,有一个docker容器具有一个我已经停止过的映像并配置了nginx.conf

/etc/nginx/nginx.conf

.conf文件中进行以下更改

location / {
 root /var/www/html;
 index index.php index.html index.htm;
}

location ~ \.php$ {
 fastcgi_pass unix:/var/run/php-fpm/php-fpm.sock;
 fastcgi_index index.php;
 fastcgi_param SCRIPT_FILENAME /usr/share/nginx/html$fastcgi_script_name;
 include fastcgi_params;
}

它仍然不指向wpsite,而且如果我使用ftp www文件夹,也一样。

我遇到的错误是502 bad gateway

还有一个站点位于php中,用于应用程序api,尽管我停止了docker,但应用程序并未关闭,但这是因为docker仅针对wordpress站点设置。

0 个答案:

没有答案