From 532e8b5726595500b06e48b47d6cd4e1bbfe3618 Mon Sep 17 00:00:00 2001 From: ertopogo Date: Sun, 18 Jan 2026 22:24:52 +0100 Subject: Update environment configuration and installation documentation for Lucien Sens Bon project. Changed DATABASE_URL, NEXT_PUBLIC_MEDUSA_BACKEND_URL, ADMIN_CORS, and STORE_CORS to reflect new internal DNS structure. Added DNS nomenclature guidelines and Git deployment instructions in INSTALLATION.md. --- apache-vhost.conf | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'apache-vhost.conf') diff --git a/apache-vhost.conf b/apache-vhost.conf index 66bb310..a34914e 100644 --- a/apache-vhost.conf +++ b/apache-vhost.conf @@ -1,26 +1,26 @@ - ServerName lucien-sens-bon.com - ServerAlias www.lucien-sens-bon.com + ServerName www.lsb.huitral.ruka.lan + ServerAlias lsb.huitral.ruka.lan ProxyPreserveHost On ProxyPass / http://localhost:8000/ ProxyPassReverse / http://localhost:8000/ - ErrorLog ${APACHE_LOG_DIR}/storefront-error.log - CustomLog ${APACHE_LOG_DIR}/storefront-access.log combined + ErrorLog ${APACHE_LOG_DIR}/lsb-storefront-error.log + CustomLog ${APACHE_LOG_DIR}/lsb-storefront-access.log combined - ServerName api.lucien-sens-bon.com + ServerName api.lsb.huitral.ruka.lan ProxyPreserveHost On ProxyPass / http://localhost:9000/ ProxyPassReverse / http://localhost:9000/ - ErrorLog ${APACHE_LOG_DIR}/api-error.log - CustomLog ${APACHE_LOG_DIR}/api-access.log combined + ErrorLog ${APACHE_LOG_DIR}/lsb-api-error.log + CustomLog ${APACHE_LOG_DIR}/lsb-api-access.log combined # Note : Pour activer SSL (https), utilisez Certbot : -# sudo certbot --apache -d lucien-sens-bon.com -d api.lucien-sens-bon.com +# sudo certbot --apache -d www.lsb.huitral.ruka.lan -d api.lsb.huitral.ruka.lan -- cgit v1.2.3