| 248 | } |
| 249 | |
| 250 | async function nginx() { |
| 251 | const text = ` |
| 252 | <!DOCTYPE html> |
| 253 | <html> |
| 254 | <head> |
| 255 | <title>Welcome to nginx!</title> |
| 256 | <style> |
| 257 | body { |
| 258 | width: 35em; |
| 259 | margin: 0 auto; |
| 260 | font-family: Tahoma, Verdana, Arial, sans-serif; |
| 261 | } |
| 262 | </style> |
| 263 | </head> |
| 264 | <body> |
| 265 | <h1>Welcome to nginx!</h1> |
| 266 | <p>If you see this page, the nginx web server is successfully installed and |
| 267 | working. Further configuration is required.</p> |
| 268 | |
| 269 | <p>For online documentation and support please refer to |
| 270 | <a href="http://nginx.org/">nginx.org</a>.<br/> |
| 271 | Commercial support is available at |
| 272 | <a href="http://nginx.com/">nginx.com</a>.</p> |
| 273 | |
| 274 | <p><em>Thank you for using nginx.</em></p> |
| 275 | </body> |
| 276 | </html> |
| 277 | ` |
| 278 | return text; |
| 279 | } |
| 280 | |
| 281 | function surge(content, url, path) { |
| 282 | let 每行内容; |