17 lines
473 B
Plaintext
17 lines
473 B
Plaintext
---
|
|
---
|
|
server {
|
|
listen 80;
|
|
server_name no-rate-limit.{{ site.domain }};
|
|
include {{ site.serving-path }}/common/common.conf;
|
|
root {{ site.serving-path }}/domains/testing-rate-limit/root;
|
|
}
|
|
|
|
server {
|
|
listen 443;
|
|
server_name no-rate-limit.{{ site.domain }};
|
|
include {{ site.serving-path }}/nginx-includes/wildcard-normal.conf;
|
|
include {{ site.serving-path }}/nginx-includes/tls-defaults.conf;
|
|
root {{ site.serving-path }}/domains/testing-rate-limit/root;
|
|
}
|