1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- server {
- listen 80;
- listen [::]:80;
- server_name localhost;
- if ( $request_uri = "/" ){
- return 301 /gift/index.html;
- }
-
-
- location / {
- root /usr/share/nginx/html;
- index gift/index.html;
- }
-
-
-
- error_page 500 502 503 504 /50x.html;
- location = /50x.html {
- root /usr/share/nginx/html;
- }
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- }
|