VZ
Size: a a a
VZ
NR
O
O
O
В
EN
AV
AV
AV
AV
a
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name example.com;
# ...
}
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name www.example.com;
# ...
location / {
return 301 https://example.com$request_uri;
}
}
server {
listen 80;
listen [::]:80;
server_name example.com;
# ...
location / {
return 301 https://example.com$request_uri;
}
}
server {
listen 80;
listen [::]:80;
server_name www.example.com;
# ...
location / {
return 301 https://example.com$request_uri;
}
}AV
nginx -t в помощь)