modified: README.md

modified:   serv_nginx/docker-compose.yml
	modified:   serv_nginx/nginx/nginx-http.conf
	modified:   serv_nginx/stubSite/index.html
add stub site
This commit is contained in:
valitovgaziz
2025-08-08 20:43:44 +05:00
parent f565cf1ffc
commit 05af602048
4 changed files with 40 additions and 6 deletions
+2 -5
View File
@@ -1,8 +1,5 @@
### Microservices on docker-compose.
## before start your need to set .env file with your VARIABLES
## build and start with command: make
Hosting by ValitovGaziz team
on docker compose
last moove merge certbot and nginx up services and add easysite102.ru domein with stub site
+1
View File
@@ -29,6 +29,7 @@ services:
volumes:
- certbot_data:/etc/letsencrypt
- certbot_www:/var/www/certbot
- ./stubSite:/usr/share/nginx/stub/html
- ../serv_spa/spa/vue/dist:/usr/share/nginx/yalarba/html
- ../valitovgaziz/html:/usr/share/nginx/valitovgaziz/html
- ../easySite/easy-site/prod:/usr/share/nginx/easysite102/html
+1 -1
View File
@@ -3,7 +3,7 @@ server {
server_name yalarba.ru easysite102.ru valitovgaziz.ru бегущийбашкир.рф;
location / {
root /usr/share/nginx/html;
root /usr/share/nginx/stub/html;
index index.html;
}
+36
View File
@@ -0,0 +1,36 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Технические работы</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
padding: 50px;
color: #333;
}
h1 {
font-size: 2.5em;
}
p {
font-size: 1.2em;
}
.container {
max-width: 600px;
margin: 0 auto;
}
</style>
</head>
<body>
<div class="container">
<h1>Идут технические работы</h1>
<p>Сайт временно недоступен. Мы работаем над улучшением сервиса.</p>
<p>Попробуйте зайти позже.</p>
<p>С уважением, команда ValitovGaziz</p>
<p>telegram: @valitovgaziz</p>
<p>email: valitovgaziz@yandex.ru</p>
</div>
</body>
</html>