Skip to content

Commit

Permalink
fix: 修复conf文件中相对路径错误
Browse files Browse the repository at this point in the history
  • Loading branch information
WGrape committed Nov 27, 2022
1 parent a9842ab commit a0a6048
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion vhosts/default.conf
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
# Not allowed to use relative path, use absolute path instead.
server {
listen 8090;
server_name localhost;

access_log /dist/logs/default.access.log;

location / {
root ../html/;
root /dist/html/;
index index.html index.htm;
}

Expand Down

0 comments on commit a0a6048

Please sign in to comment.