mirror of
https://github.com/appwrite/console.git
synced 2026-06-06 19:27:48 +00:00
17 lines
308 B
Nginx Configuration File
17 lines
308 B
Nginx Configuration File
server {
|
|
listen 3000;
|
|
listen [::]:3000;
|
|
server_name localhost;
|
|
|
|
location /console {
|
|
root /usr/share/nginx/html;
|
|
index index.html index.htm;
|
|
try_files $uri /console/index.html;
|
|
}
|
|
|
|
location / {
|
|
absolute_redirect off;
|
|
return 301 /console;
|
|
}
|
|
}
|