我在 EC2 实例上运行 Nginx。我在默认/usr/share/nginx/html
目录中安装了一个网页。我注意到,如果我为该 EC2 实例创建 AMI 并使用该 AMI 创建新的 EC2 实例,则默认的 Nginx 欢迎站点(即 index.html、404.html 等)将被恢复并覆盖我现有的网站,其中的文件是相同的。我可以通过git status
在该目录中执行并查看它们是否已添加来判断这一点。
这有点麻烦,因为我在 EC2 实例上运行 SaaS 产品,让客户看到 Nginx 欢迎页面看起来有点不专业。
我的问题是:是什么原因造成的?
这是我的nginx.conf
:
# For more information on configuration, see:
# * Official English Documentation: http://nginx.org/en/docs/
# * Official Russian Documentation: http://nginx.org/ru/docs/
user nginx;
worker_processes 1;
error_log /var/log/nginx/error.log;
#error_log /var/log/nginx/error.log notice;
#error_log /var/log/nginx/error.log info;
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 0;
keepalive_timeout 65;
#gzip on;
# Load modular configuration files from the /etc/nginx/conf.d directory.
# See http://nginx.org/en/docs/ngx_core_module.html#include
# for more information.
include /etc/nginx/conf.d/*.conf;
#server {
# listen 80;
# server_name *.xxx.com;
# return 301 https://$host$request_uri;
#}
server {
listen 80;
listen 443 default ssl;
server_name *.xxx.com;
if ($http_x_forwarded_proto = "http") {
return 301 https://$host$request_uri;
}
ssl_certificate /etc/pki/tls/certs/process.st.crt;
ssl_certificate_key /etc/pki/tls/private/process.st.key;
ssl_protocols SSLv3 TLSv1;
ssl_ciphers ALL:!aNULL:!ADH:!eNULL:!LOW:!EXP:RC4+RSA:+HIGH:+MEDIUM;
#charset koi8-r;
#access_log /var/log/nginx/host.access.log main;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
# Disable cache (for now).
add_header Cache-Control no-cache;
}
# redirect server error pages to the static page /40x.html
#
error_page 404 /404.html;
location = /40x.html {
root /usr/share/nginx/html;
}
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
# another virtual host using mix of IP-, name-, and port-based configuration
#
#server {
# listen 8000;
# listen somename:8080;
# server_name somename alias another.alias;
# location / {
# root html;
# index index.html index.htm;
# }
#}
# HTTPS server
#
#server {
# listen 443;
# server_name localhost;
# ssl on;
# ssl_certificate cert.pem;
# ssl_certificate_key cert.key;
# ssl_session_timeout 5m;
# ssl_protocols SSLv2 SSLv3 TLSv1;
# ssl_ciphers HIGH:!aNULL:!MD5;
# ssl_prefer_server_ciphers on;
# location / {
# root html;
# index index.html index.htm;
# }
#}
}
我创建基本 AMI 图像所执行的步骤。
- AWS EC2 控制台:使用 Amazon Linux 64 位启动实例。
- 通过 SSH 进入实例:
sudo yum install git
,sudo yum install nginx
。 - 编辑
/etc/nginx/nginx.conf
至上述内容。 - 复制所有必需的 SSL 证书。
- 删除 处的默认页面
/usr/share/nginx/html
。 - 将 Git 存储库克隆到
/usr/share/nginx/html
。
现在我创建图像:
ec2-create-image $INSTANCE_ID --name base
。- AWS EC2 控制台:使用“基本”AMI 启动实例。
- 当它启动时,它再次出现欢迎页面以及我从 git 中提取的页面,但是 Nginx 页面已经覆盖了同名的文件。
答案1
我刚刚花了一些时间尝试重现该问题,但没有成功。
我启动了最新的 Amazon Linux AMI。
登录后,我通过 yum 安装了 git 和 nginx,移动/usr/share/nginx/html
到/usr/share/nginx/orig-html
,将 html repo 克隆进去usr/share/nginx/html
并测试新的 repo 是否可见,而不是测试页面。
然后我使用 AWS 控制台从工作实例中“创建图像”。
AMI 映像完成后,我从自定义 AMI 启动了另一个实例,并确认我安装的站点正在运行,而不是默认站点。
因此我想我会问您是否正确创建了图像,等待快照完成后再使用新的 AMI ID 启动另一个实例。
答案2
最有可能的是,你将你的 github 代码放在了错误的目录中(即不是 nginx doc 根目录),因此 nginx 默认使用它附带的默认问候语。
听起来您使用静态 html 页面,所以这非常简单。
只需粘贴你的 /etc/nginx/nginx.conf(以及任何包含的 conf 文件)。
编辑::仔细阅读问题后,听起来好像有一个 init 进程正在将您的 nginx conf 重置为默认配置。再次粘贴您的 conf 文件,我们可以进一步提供帮助。当您重新启动时,您是否注意到此文件发生了变化?时间戳是什么?与启动时相同吗?
EDIT2:尝试使用不同的 ami,例如官方的 centos 6.4 ami
重启时不会发生这种情况,只有当我创建新的 EC2 并使用 AMI 时才会发生这种情况。
或者至少告诉我们你正在启动什么。这种奇怪的行为可能不会发生在官方的 centos ami 上
答案3
我的猜测是:Nginx 默认网站正在建立并取代您的网站。以下是一些可以尝试的方法:
- (sudo)nxdissite 默认
- (须藤) rm /etc/nginx/sites-enabled/default