delpoyment with fully dockerized project on wixur.ir, dyolink docker hub created beside backend and frontend image is uploaded.

This commit is contained in:
2026-07-07 15:32:25 +03:30
parent e00af9f5be
commit 329d3f122c
28 changed files with 877 additions and 44 deletions

View File

@@ -0,0 +1,17 @@
# Temporary HTTP-only config used while obtaining the first Let's Encrypt certificate.
# Replaced by nginx/generated/default.conf after ./scripts/init-letsencrypt.sh
server {
listen 80;
listen [::]:80;
server_name _;
location /.well-known/acme-challenge/ {
root /var/www/certbot;
}
location / {
return 200 'Dyolink: obtaining SSL certificate. Retry shortly.';
add_header Content-Type text/plain;
}
}