Skip to content

Commit

Permalink
fix: deprecations. (#288)
Browse files Browse the repository at this point in the history
* fix: deprecations.

* chore: renames steps in job.
  • Loading branch information
jcchavezs authored Oct 6, 2024
1 parent 3981897 commit 6789252
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 11 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/ghpages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,8 @@ jobs:
with:
hugo-version: 'latest'
extended: true
# extended: true

- name: Build
- name: Install deps
run: npm install

- name: Build
Expand Down
2 changes: 1 addition & 1 deletion config/_default/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ enableEmoji = true
enableGitInfo = false
enableRobotsTXT = true
languageCode = "en-US"
paginate = 7
pagerSize = 7
rssLimit = 10

# add redirects/headers
Expand Down
23 changes: 15 additions & 8 deletions layouts/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@ <h1 class="mt-0">{{ .Title }}</h1>
</div>
<div class="col-lg-9 col-xl-8 text-center">
<p class="lead">{{ .Params.lead | safeHTML }}</p>
<a class="btn btn-primary btn-lg px-4 mb-2" href="{{ "docs/tutorials/quick-start" | relURL }}" role="button">Get started</a>
<p class="meta">Open-source Apache 2 Licensed. <a href="https://github.com/corazawaf/coraza">GitHub {{ $data := getJSON "https://api.github.com/repos/corazawaf/coraza/tags" }}{{ $tag := index ($data) 0 }}{{ $tag.name }}</a></p>
<a class="btn btn-primary btn-lg px-4 mb-2" href="{{ " docs/tutorials/quick-start" | relURL }}" role="button">Get
started</a>
<p class="meta">Open-source Apache 2 Licensed. <a href="https://github.com/corazawaf/coraza">GitHub</a></p>
</div>
</div>
</section>
Expand All @@ -19,29 +20,35 @@ <h1 class="mt-0">{{ .Title }}</h1>
<div class="row justify-content-center text-center">
<div class="col-lg-5">
<h2 class="h4">Security </h2>
<p>Security is what Coraza is for, enforce policies using <a href="/docs/tutorials/coreruleset">OWASP CRS</a> or create your own policies to stop attackers and generate important audit information.</p>
<p>Security is what Coraza is for, enforce policies using <a href="/docs/tutorials/coreruleset">OWASP CRS</a> or
create your own policies to stop attackers and generate important audit information.</p>
</div>
<div class="col-lg-5">
<h2 class="h4">Fast by default ⚡️</h2>
<p>From huge websites to small blogs, Coraza can handle that load with minimal performance impacts, just check our <a href="/docs/reference/benchmarks">Benchmarks</a>.</p>
<p>From huge websites to small blogs, Coraza can handle that load with minimal performance impacts, just check
our <a href="/docs/reference/benchmarks">Benchmarks</a>.</p>
</div>
<div class="col-lg-5">
<h2 class="h4">Extensible</h2>
<p>Audit Loggers, persistence engines, operators, actions, create your own functionalities to extend Coraza as much as you want.</p>
<p>Audit Loggers, persistence engines, operators, actions, create your own functionalities to extend Coraza as
much as you want.</p>
</div>
</div>
<div class="row justify-content-center text-center">
<div class="col-lg-5">
<h2 class="h4">Integrations</h2>
<p>Coraza WAF is just a library but we support many integrations to deploy a WAF as an <a href="#">application server</a>, <a href="#">reverse proxy</a>, <a href="#">container</a>, and more.</p>
<p>Coraza WAF is just a library but we support many integrations to deploy a WAF as an <a href="#">application
server</a>, <a href="#">reverse proxy</a>, <a href="#">container</a>, and more.</p>
</div>
<div class="col-lg-5">
<h2 class="h4">Roadmap</h2>
<p>Expect interesting features and improvements within our community-driven roadmap, for small developers and big companies.</p>
<p>Expect interesting features and improvements within our community-driven roadmap, for small developers and
big companies.</p>
</div>
<div class="col-lg-5">
<h2 class="h4">Enterprise ready</h2>
<p>Continuous development, high performance and great documentation are the recipe for a perfect enterprise open source project.</p>
<p>Continuous development, high performance and great documentation are the recipe for a perfect enterprise open
source project.</p>
</div>
</div>
</div>
Expand Down

0 comments on commit 6789252

Please sign in to comment.