Skip to content
This repository has been archived by the owner on Feb 26, 2020. It is now read-only.

Latest commit

 

History

History
27 lines (22 loc) · 690 Bytes

README.md

File metadata and controls

27 lines (22 loc) · 690 Bytes

error-pages

Deprecated. Use resource/pages/ instead.

Error pages for datarc.cn.

Examples

Nginx Config

error_page  404              /404.html;
location = /404.html {
    return 302 https://r.datarc.cn/pages/404.html;
}

error_page   500 502 503 504  /500.html;
location = /500.html {
    return 302 https://r.datarc.cn/pages/500.html;
}

error_page   503 /503.html;
location = /503.html {
    return 302 https://r.datarc.cn/pages/503.html;
}