Только давайте обойдёмся без перехода на личности и оскорблений. Я всё-таки постарше буду...Вы уверены?
Вы серьёзно? поднимать домен исключительно из-за такой ерунды?А кто сказал, что "исключительно"? Меня брали на удалёнку, но обойти порядка 40 компов в разных точках завода и настроить доступ по DameWare или RAdmin - задача нетривиальная, да и пользователи на своих компах - локаладмины, и сменить айпишник им - минутное дело. Вы серьёзно считаете модель, когда доступ пользователя в инет основана на IP нормальной? Тогда нам с Вами не о чем говорить, если для Вас это "ерунда". Пусть берут мальчика на побегушках вроде Вас и пусть он сам и бегает...
server {
listen react-cod.ru:80;
server_name react-cod.ru;
rewrite ^(.*)$ https://$server_name$1 permanent;
}
server {
listen react-cod.ru:443 ssl;
server_name react-cod.ru;
ssl_certificate /etc/letsencrypt/live/react-cod.ru/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/react-cod.ru/privkey.pem;
ssl_trusted_certificate /etc/letsencrypt/live/react-cod.ru/chain.pem;
ssl_stapling on;
ssl_stapling_verify on;
resolver 77.88.8.8 77.88.8.1;
add_header Strict-Transport-Security "max-age=31536000";
add_header Content-Security-Policy "block-all-mixed-content";
charset utf-8;
access_log logs/react.access.log main;
location / {
root /var/www/react;
index index.html index.htm;
rewrite_log on;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /var/www/react;
}
location ~ \.php$ {
root /var/www/react;
fastcgi_pass unix:run/php-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
location ~ /\.ht {
deny all;
}
}
user www;
worker_processes 1;
error_log logs/error.log info;
pid run/nginx.pid;
worker_rlimit_nofile 1024;
events {
worker_connections 800;
}
http {
include mime.types;
default_type application/octet-stream;
index index.php index.html;
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;
tcp_nopush on;
keepalive_timeout 65;
gzip on;
server_tokens off;
server {
listen web.myhome.local:80;
server_name web.myhome.local;
charset utf-8;
access_log logs/web.access.log main;
location / {
root /var/www/html;
index index.html index.htm;
}
error_page 404 /404.html;
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /var/www/html;
}
location ~ \.php$ {
root /var/www/html;
try_files $uri $uri/ =404;
fastcgi_pass unix:run/php-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
location ~ /\.ht {
deny all;
}
}
include "/etc/nginx/conf.d/*.conf";
}
Задачи надо решать, исходя из практики. И подходить только в случае, если компьютер не включается.