- website: 单页落地(愿景、架构、路径、团队范式、生命周期) - nginx:alpine 镜像与 docker-compose(端口 8888) Made-with: Cursor
14 lines
263 B
Nginx Configuration File
14 lines
263 B
Nginx Configuration File
server {
|
|
listen 80;
|
|
server_name localhost;
|
|
root /usr/share/nginx/html;
|
|
index index.html;
|
|
|
|
location / {
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
|
|
gzip on;
|
|
gzip_types text/css application/javascript application/json text/plain;
|
|
}
|