mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-12-03 00:49:07 +08:00
14 lines
402 B
Plaintext
14 lines
402 B
Plaintext
location / {
|
|
#Redirect everything that isn't a real file to index.php
|
|
try_files $uri $uri/ /index.php$is_args$args;
|
|
}
|
|
#If you want a single domain name at the front and back ends
|
|
location /admin {
|
|
try_files $uri $uri/ /admin/index.php$is_args$args;
|
|
}
|
|
location /mobile {
|
|
try_files $uri $uri/ /mobile/index.php$is_args$args;
|
|
}
|
|
location /api {
|
|
try_files $uri $uri/ /api/index.php$is_args$args;
|
|
} |