皆様よろしくお願いいたします。
mydomainA.comの cerbotSSL化と表示はできました。
mydomainB.comを新たに取得しnginxでバーチャルドメイン設定を使用をしたいのですが、
ウェブ検索をしても、方法が探し出せず困っております。
現在 Webarenaのindigoを使用しています。IPアドレスが1つなのですが、
どのように、2つのドメインで分けるのでしょうか?
ドメインを取得したバリュードメインです。ここでのDNSの設定と
nginxの設定の記述の方法を教えていただけますでしょうか?
よろしくお願いいたします。
■環境
OS - Centos 7.9
Nginx 1.19.10
■バリュードメインDNSの設定
a @ 116.80.99.999
a www 116.80.99.999
a mail 116.80.99.999
a ftp 116.80.99.999
mx mail.MYWEBSITEB.com. 10
■/etc/nginx/nginx.conf の中身
user nginx;
worker_processes 1;
error_log /var/log/nginx/error.log warn;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
}
http {
include /etc/nginx/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 /var/log/nginx/access.log main; sendfile on; #tcp_nopush on; keepalive_timeout 65; #gzip on; include /etc/nginx/conf.d/*.conf;
server {
listen 443 ssl;
server_name mywebisite.com;
charset UTF-8;
ssl_certificate /etc/letsencrypt/live/mywebisiteA.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/mywebisiteA.com/privkey.pem;
root /var/www/html;
location / {
index index.php index.html index.htm;
}
location ^~ /blog {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_pass http://127.0.0.1:2368;
}
location ~ .php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
}
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/05/02 05:05