这是我第一次设置自己的服务器来托管基本的静态网站。我使用的是Amazon Linux 2
带有 的 VM nginx/1.18.0
。我的网站目前已启动,我的文件存储在 VM 中的以下文件夹中:
/usr/share/nginx/html/
我尝试修改我的 NGNIX 配置文件以删除文件扩展名(.html),但是当我进行更改时,我无法重新启动服务器。
我修改了可用的conf:etc/nginx/ nginx.conf
并添加了服务器参数,但它不起作用(在底部)。
user nginx;
worker_processes 1;
error_log /var/log/nginx/error.log warn;
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 65;
#gzip on;
include /etc/nginx/conf.d/*.conf;
}
server {
rewrite ^/(.*)\.html /$1/ permanent;
}
答案1
您应该编辑已定义的server
块,而不是添加新块。server
您要编辑的块位于conf.d
目录内的某个文件中。