ניתוב בין 2 אתרים
-
@dovid
1 2 הסתדר. תודה.
3. קח לדוגמא את האתר של נטפרי, netfree.link. יש את הדף נחיתה, ויש את דף ההגדרות.
נניח לצורך העניין שאלו 2 אתרים שונים, כל אחד יושב על פורט אחר.
אני רוצה שכשיבקשו את http://netfree.link/user יקבלו את האתר השני.
מה הדרך לעשות את זה?
אני רוצה לנסות את הדרך השניה שכתבת (לפי סאב דומיין). אך לא כ"כ הבנתי. ב server הראשון לכתוב ב server_name:
localhost?אני מצרף את הקובץ כמו שהוא אחרי השינויים:
#user nobody; worker_processes 1; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info; #pid logs/nginx.pid; events { worker_connections 1024; } http { include mime.types; default_type application/octet-stream; #log_format main '$remote_addr - $remote_user [$time_local] "$request" ' # '$status $body_bytes_sent "$http_referer" ' # '"$http_user_agent" "$http_x_forwarded_for"'; #access_log logs/access.log main; sendfile on; #tcp_nopush on; #keepalive_timeout 0; keepalive_timeout 65; #gzip on; server { listen 890; server_name localhost; #charset koi8-r; #access_log logs/host.access.log main; location /a { proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Host $http_host; proxy_set_header X-NginX-Proxy true; proxy_pass http://localhost:3000; proxy_redirect off; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; } #error_page 404 /404.html; # redirect server error pages to the static page /50x.html # error_page 500 502 503 504 /50x.html; location = /50x.html { root html; } # proxy the PHP scripts to Apache listening on 127.0.0.1:80 # #location ~ \.php$ { # proxy_pass http://127.0.0.1; #} # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000 # #location ~ \.php$ { # root html; # fastcgi_pass 127.0.0.1:9000; # fastcgi_index index.php; # fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name; # include fastcgi_params; #} # deny access to .htaccess files, if Apache's document root # concurs with nginx's one # #location ~ /\.ht { # deny all; #} } server { listen 890; server_name a20.localhost; #charset koi8-r; #access_log logs/host.access.log main; location / { proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Host $http_host; proxy_set_header X-NginX-Proxy true; proxy_pass http://localhost:3000; proxy_redirect off; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; } #error_page 404 /404.html; # redirect server error pages to the static page /50x.html # error_page 500 502 503 504 /50x.html; location = /50x.html { root html; } # proxy the PHP scripts to Apache listening on 127.0.0.1:80 # #location ~ \.php$ { # proxy_pass http://127.0.0.1; #} # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000 # #location ~ \.php$ { # root html; # fastcgi_pass 127.0.0.1:9000; # fastcgi_index index.php; # fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name; # include fastcgi_params; #} # deny access to .htaccess files, if Apache's document root # concurs with nginx's one # #location ~ /\.ht { # deny all; #} } # another virtual host using mix of IP-, name-, and port-based configuration # #server { # listen 8000; # listen somename:8080; # server_name somename alias another.alias; # location / { # root html; # index index.html index.htm; # } #} # HTTPS server # #server { # listen 443 ssl; # server_name localhost; # ssl_certificate cert.pem; # ssl_certificate_key cert.key; # ssl_session_cache shared:SSL:1m; # ssl_session_timeout 5m; # ssl_ciphers HIGH:!aNULL:!MD5; # ssl_prefer_server_ciphers on; # location / { # root html; # index index.html index.htm; # } #} }
-
@מנצפך אמר בניתוב בין 2 אתרים:
גם לא הבנתי מה המשמעות ב - server_name. הרי זה לכאורה מתייחס למכונה שעליה הוא יושב. לא? (תמיד localhost). משהו פה לא ברור לי.
לא. server_name אומר שאם השם של הhost בבקשה תואם למה שכתוב רק אז יוחל מקטע הserver הנוכחי. אם כתוב localhost זה בחיים לא יגיע מבחוץ. אם מושמט הserver_name הכל מתאים (כמו binding * בIIS).
-
בנטפרי הnetfree.link/user הוא חלק מאותה אפליקציה בדיוק רק שהresponse מחזיר תשובה אחרת, במקרה הזה קבצים סטטיים.
אם החלוקה שלך היא בין netfree.link לwiki.netfree.link אז הדרך היא ע"י שתי סרברים אם server_name שונה. אם החלוקה שלך היא בין netfree.link/a לבין netfree.link אז אתה משתמש עם server אחד רק עם שתי מקטעי location, אחד /, והשני /a כמו שהראיתי בהדגמה הראשונה. -
@dovid מהי ההגדרה של server_name? כלומר, מאיפה ה- nginx מקבל את ה - servername בבקשה?
אם אני מבין נכון זה עובד כך:
הדפדפן שולח בקשה. ב Header "host" כתוב הדומיין. ואז ה- nginx בודק לאיזה סרבר זה מתאים, ואם נניח זה ה סאב דומיין, הוא מפנה אליו. אז הכל מתחיל מה Header הנ"ל. אני צודק? תודה.
(האמת שניסיתי להוריד לגמרי את ה Server_name או לפברק משהו וזה עדיין עובד, אז אני מניח שזה עובד קצת שונה.) -
@dovid לא יודע איך לעשות הזחה אוטומטית בקובץ הזה. מקווה שתסתדר.
worker_processes 1;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;#access_log logs/access.log main; sendfile on; #tcp_nopush on; keepalive_timeout 65; server {
listen 80;
server_name my.co.il; location / {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_set_header X-NginX-Proxy true;
proxy_pass http://localhost:3000;proxy_redirect off;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}}
server {
listen 80;server_name a.my.co.il; location / {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_set_header X-NginX-Proxy true;
proxy_pass http://localhost:3000;
proxy_redirect off;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}
}}
-
אכן טעיתי:
If its value does not match any server name, or the request does not contain this header field at all, then nginx will route the request to the default server for this port. In the configuration above, the default server is the first one — which is nginx’s standard default behaviour.
מקור: http://nginx.org/en/docs/http/request_processing.htmlכלומר אם הבקשה לא מתאימה לאף server_name אז הראשון (או זה שצויין ברירת מחדל) לוקח.
כדי למנוע את זה הם כותבים בהמשך, מוסיפם עוד סרבר שהserver_name שלו ריק. אם רוצים שלמבקש לא תהיה אף תשובה, אז כותבים return 444.server { listen 80; server_name ""; return 444; }