18 lines
287 B
Plaintext
18 lines
287 B
Plaintext
server {
|
|
listen 80;
|
|
server_name cloud-platform.Tmerclub.com;
|
|
|
|
location / {
|
|
root /usr/share/nginx/html/platform;
|
|
}
|
|
|
|
error_page 404 /404.html;
|
|
location = /404-light.html {
|
|
}
|
|
|
|
error_page 500 502 503 504 /50x.html;
|
|
location = /50x.html {
|
|
}
|
|
}
|
|
|