50 lines
		
	
	
		
			1012 B
		
	
	
	
		
			Markdown
		
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			1012 B
		
	
	
	
		
			Markdown
		
	
	
| ---
 | |
| title: configmap-html
 | |
| description: 
 | |
| published: true
 | |
| date: 2023-11-07T18:15:51.014Z
 | |
| tags: 
 | |
| editor: markdown
 | |
| dateCreated: 2023-11-07T18:05:47.418Z
 | |
| ---
 | |
| 
 | |
| ```yaml
 | |
| ---
 | |
| kind: ConfigMap
 | |
| apiVersion: v1
 | |
| metadata:
 | |
|   name: openresty-html
 | |
| data:
 | |
|   index.html: |
 | |
|     <html>
 | |
|     <head>
 | |
|         <title>Тестовая страница</title>
 | |
|         <meta charset="UTF-8">
 | |
|     </head>
 | |
|     <body>
 | |
|       <h1>Тестовая страница</h1>
 | |
| 
 | |
|     </body>
 | |
|     </html>    
 | |
|   50x.html: |
 | |
|     <!DOCTYPE html>
 | |
|     <html>
 | |
|     <head>
 | |
|     <meta content="text/html;charset=utf-8" http-equiv="Content-Type">
 | |
|     <meta content="utf-8" http-equiv="encoding">
 | |
|     <title>Error</title>
 | |
|     <style>
 | |
|         body {
 | |
|             width: 35em;
 | |
|             margin: 0 auto;
 | |
|             font-family: Tahoma, Verdana, Arial, sans-serif;
 | |
|         }
 | |
|     </style>
 | |
|     </head>
 | |
|     <body>
 | |
|     <h1>An error occurred.</h1>
 | |
|     <p>Sorry, the page you are looking for is currently unavailable.<br/>
 | |
|     Please try again later.</p>
 | |
|     </body>
 | |
|     </html>    
 | |
| ``` |