Skip to content

Latest commit

 

History

History
27 lines (22 loc) · 708 Bytes

README_for_developer.md

File metadata and controls

27 lines (22 loc) · 708 Bytes

How to contribute

配置 HTTPS

server { listen 443 ssl; server_name yourdomain.com; # 替换为你的域名

SSL 证书和密钥文件路径

ssl_certificate /home/ecs-user/race/cert.pem; ssl_certificate_key /home/ecs-user/race/cert.key;

配置静态网页根目录

root /home/ecs-user/race;

location / { try_files $uri $uri/ =404; } }