This commit is contained in:
artemsaga
2023-12-20 19:10:17 +03:00
parent 88a676f6fb
commit cd2be9a53a
5 changed files with 10062 additions and 0 deletions

View File

@ -0,0 +1,9 @@
server {
listen 80;
index index.html;
root /app/build;
location / {
try_files $uri $uri/ /index.php$is_args$args;
}
}