mirror of
https://github.com/rancher/rancher-docs.git
synced 2026-09-26 13:08:11 +00:00
Packaging
This commit is contained in:
+20
@@ -0,0 +1,20 @@
|
||||
map_hash_bucket_size 256;
|
||||
map $request_uri $redirect_uri {
|
||||
}
|
||||
|
||||
server {
|
||||
listen 80;
|
||||
server_name localhost;
|
||||
|
||||
location / {
|
||||
root /usr/share/nginx/html;
|
||||
index index.html index.htm;
|
||||
}
|
||||
|
||||
error_page 404 /404.html;
|
||||
error_page 500 502 503 504 /50x.html;
|
||||
|
||||
if ( $redirect_uri ) {
|
||||
return 302 $redirect_uri;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user