<!DOCTYPE html> <html> <head> <title>Welcome to nginx!</title> <style> html { color-scheme: light dark; } body { width: 35em; margin: 0 auto; font-family: Tahoma, Verdana, Arial, sans-serif; } </style> </head> <body> <h1>Welcome to nginx!</h1> <p>If you see this page, the nginx web server is successfully installed and working.</p> <p>For more information, visit <ahref="http://nginx.org/">nginx.org</a>.</p> </body> </html>
错误页 html/50x.html:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
<!DOCTYPE html> <html> <head> <title>Error</title> <style> html { color-scheme: light dark; } body { width: 35em; margin: 0 auto; font-family: Tahoma, Verdana, Arial, sans-serif; } </style> </head> <body> <h1>An error occurred.</h1> <p>The page you requested is currently unavailable. Please try again later.</p> <p>If you are the administrator, check the error logs for details.</p> </body> </html>
tee ./html/index.html <<'EOF' <!DOCTYPE html> <html> <head> <title>Welcome to nginx!</title> <style> html { color-scheme: light dark; } body { width: 35em; margin: 0 auto; font-family: Tahoma, Verdana, Arial, sans-serif; } </style> </head> <body> <h1>Welcome to nginx!</h1> <p>If you see this page, the nginx web server is successfully installed and working.</p> <p>For more information, visit <a href="http://nginx.org/">nginx.org</a>.</p> </body> </html> EOF
tee ./html/50x.html <<'EOF' <!DOCTYPE html> <html> <head> <title>Error</title> <style> html { color-scheme: light dark; } body { width: 35em; margin: 0 auto; font-family: Tahoma, Verdana, Arial, sans-serif; } </style> </head> <body> <h1>An error occurred.</h1> <p>The page you requested is currently unavailable. Please try again later.</p> <p>If you are the administrator, check the error logs for details.</p> </body> </html> EOF