Bonjour,
Voila je rencontre un petit problème de configuration ou d'aiguillage avec mon routing Nginx.
J'ai mis un widlcard sur mon nom de domaine, car chaque sous-domaine est associé automatiquement au nom de mes clients.
C'est à dire : clientA.domaine.com, clientB.domaine.com,... de ce côté cela fonctionne, je n'ai rien à faire, à chaque nouveau client, le sous-domaine fonctionne sans que j'ai besoin de le créer grâce au wildcard.
J'aimerais réserver des sous-domaines, par exemple : "admin.domaine.com", "analytics.domaine.com", "blog.domaine.com",...
server {
listen 80;
server_name analytics.domain.com;
root /home/forge/analytics.domain.com/matomo;
}
server {
listen 80;
server_name .domain.com;
root /home/forge/domain.com/public;
}
Dans Nginx, j'ai créé un nouveau "server block" et l'ai fait pointer vers un root différent, cela à fonctionner un moment mais maitenant, nginx me renvoi l'adresse "analytics.domaine.com" vers "domaine.com" et je ne sais plus accéder à l'adresse "analytics.domain.com".
Merci d'avance pour votre aide.
Bonjour @lolo3129,
Je n'ai pas l'impression que cela fonctionne :(
Voici ma config nginx complète (car dans ma demande initiale, je l'avais simplifiée au maximum) :
upstream socket_mondomaine {
server 127.0.0.1:6001;
}
server {
listen 443;
server_name www.mondomaine.be;
return 301 https://mondomaine.be$request_uri;
}
server {
listen 443 ssl http2 default_server;
listen [::]:443 ssl http2 default_server;
server_name .mondomaine.be mondomaine.fr mondomaine.eu;
root /home/forge/mondomaine.be/public;
# FORGE SSL (DO NOT REMOVE!)
ssl_certificate /etc/nginx/ssl/mondomaine.be/123456/server.crt;
ssl_certificate_key /etc/nginx/ssl/mondomaine.be/123456/server.key;
ssl_protocols TLSv1.2;
ssl_ciphers ECDHE-RSA-AES256-GCM-SHA512:DHE-RSA-AES256-GCM-SHA512:ECDHE-RSA-AES256-GCM-SHA384:DHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-SHA384;
ssl_prefer_server_ciphers on;
ssl_dhparam /etc/nginx/dhparams.pem;
add_header X-Frame-Options "SAMEORIGIN";
add_header X-XSS-Protection "1; mode=block";
add_header X-Content-Type-Options "nosniff";
index index.html index.htm index.php;
charset utf-8;
# FORGE CONFIG (DO NOT REMOVE!)
include forge-conf/mondomaine.be/server/*;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location = /favicon.ico { access_log off; log_not_found off; }
location = /robots.txt { access_log off; log_not_found off; }
access_log off;
error_log /var/log/nginx/mondomaine.be-error.log error;
error_page 404 /index.php;
location /socket.io {
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_http_version 1.1;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $host;
proxy_pass http://socket_mondomaine;
}
location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php/php7.3-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
}
location ~ /\.(?!well-known).* {
deny all;
}
client_max_body_size 5000m;
}
server {
listen 80;
server_name analytics.mondomaine.be;
root /home/forge/analytics.mondomaine.be/matomo;
}