This commit is contained in:
Juan Pablo Vial
2023-07-24 20:54:30 -04:00
parent b7fc538e78
commit d9d5a15376
4 changed files with 21 additions and 16 deletions

View File

@ -2,13 +2,10 @@ server {
listen 80;
server_name web;
index index.php;
error_log /code/logs/error.log;
access_log /code/logs/access.log;
error_log /logs/error.log;
access_log /logs/access.log;
root /code/public;
location /api {
try_files $uri /api/index.php$is_args$args;
}
location / {
try_files $uri /index.php$is_args$args;
}