feature: Add no rate limit shaping case.
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
---
|
||||
---
|
||||
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;
|
||||
}
|
||||
@@ -4,7 +4,7 @@ server {
|
||||
listen 80;
|
||||
server_name testing-rate-limit-0bps.{{ site.domain }};
|
||||
include {{ site.serving-path }}/common/common.conf;
|
||||
root {{ site.serving-path }}/domains/testing-rate-limit/rate-limit-0bps;
|
||||
root {{ site.serving-path }}/domains/testing-rate-limit/root;
|
||||
}
|
||||
|
||||
server {
|
||||
@@ -12,5 +12,5 @@ server {
|
||||
server_name testing-rate-limit-0bps.{{ 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/rate-limit-0bps;
|
||||
root {{ site.serving-path }}/domains/testing-rate-limit/root;
|
||||
}
|
||||
|
||||
Binary file not shown.
@@ -5,7 +5,7 @@ server {
|
||||
server_name testing-rate-limit-1000gbps.{{ site.domain }};
|
||||
|
||||
include {{ site.serving-path }}/common/common.conf;
|
||||
root {{ site.serving-path }}/domains/testing-rate-limit/rate-limit-1000gbps;
|
||||
root {{ site.serving-path }}/domains/testing-rate-limit/root;
|
||||
}
|
||||
|
||||
server {
|
||||
@@ -14,5 +14,5 @@ server {
|
||||
|
||||
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/rate-limit-1000gbps;
|
||||
root {{ site.serving-path }}/domains/testing-rate-limit/root;
|
||||
}
|
||||
|
||||
@@ -1,12 +0,0 @@
|
||||
---
|
||||
subdomain: testing-rate-limit-1000gbps
|
||||
layout: page
|
||||
favicon: green
|
||||
background: green
|
||||
---
|
||||
|
||||
<div id="content">
|
||||
<h1 style="font-size: 12vw;">
|
||||
{{ page.subdomain }}.<br>{{ site.domain }}
|
||||
</h1>
|
||||
</div>
|
||||
Binary file not shown.
@@ -1,5 +1,4 @@
|
||||
---
|
||||
subdomain: testing-rate-limit-0bps
|
||||
layout: page
|
||||
favicon: green
|
||||
background: green
|
||||
@@ -7,6 +6,6 @@ background: green
|
||||
|
||||
<div id="content">
|
||||
<h1 style="font-size: 12vw;">
|
||||
{{ page.subdomain }}.<br>{{ site.domain }}
|
||||
TEST for rate limit.
|
||||
</h1>
|
||||
</div>
|
||||
Binary file not shown.
Reference in New Issue
Block a user