48 lines
1.2 KiB
Plaintext
48 lines
1.2 KiB
Plaintext
# Massage subdomain
|
|
server {
|
|
listen 443 ssl http2;
|
|
server_name massage.themself.eu;
|
|
server_tokens off;
|
|
include snippets/ssl-params.conf;
|
|
include snippets/security-headers.conf;
|
|
|
|
location / {
|
|
limit_req zone=ip_limit burst=20 nodelay;
|
|
proxy_pass http://arti24-container:3334;
|
|
include snippets/proxy-headers.conf;
|
|
include snippets/proxy-optimization.conf;
|
|
}
|
|
}
|
|
|
|
# Kopama subdomain
|
|
server {
|
|
listen 443 ssl http2;
|
|
server_name kopama.themself.eu;
|
|
server_tokens off;
|
|
include snippets/ssl-params.conf;
|
|
include snippets/security-headers.conf;
|
|
|
|
location / {
|
|
limit_req zone=ip_limit burst=20 nodelay;
|
|
proxy_pass http://arti24-container:3335;
|
|
include snippets/proxy-headers.conf;
|
|
include snippets/proxy-optimization.conf;
|
|
}
|
|
}
|
|
|
|
# Driving subdomain
|
|
server {
|
|
listen 443 ssl http2;
|
|
server_name driving.themself.eu;
|
|
server_tokens off;
|
|
include snippets/ssl-params.conf;
|
|
include snippets/security-headers.conf;
|
|
|
|
location / {
|
|
limit_req zone=ip_limit burst=20 nodelay;
|
|
proxy_pass http://arti24-container:3336;
|
|
include snippets/proxy-headers.conf;
|
|
include snippets/proxy-optimization.conf;
|
|
}
|
|
}
|