mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-02-23 06:15:01 +08:00
14 lines
No EOL
402 B
Text
14 lines
No EOL
402 B
Text
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;
|
|
} |