改变目录结构,增加nginx配置文件

This commit is contained in:
seahi 2025-09-23 11:06:27 +08:00
parent 7374e97f44
commit 6e348e7ffb
4 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,8 @@
server {
listen 80 default_server;
location / {
root /var/www/localhost/htdocs;
index index.html;
}
}