Fix a missing ; at end of line 11
./setup.sh runs into a nginx error if that line does not end in ";"
This commit is contained in:
parent
cb2ecb9b74
commit
a77ed447ce
|
@ -8,7 +8,7 @@ server {
|
|||
client_max_body_size 1000M;
|
||||
|
||||
#post_max_size 1000M;
|
||||
root /home/user/skynet-webportal/packages/skynet/build
|
||||
root /home/user/skynet-webportal/packages/skynet/build;
|
||||
}
|
||||
|
||||
location ^~ /api/ {
|
||||
|
|
Reference in New Issue