]> git.ipfire.org Git - thirdparty/FORT-validator.git/commitdiff
Add SEO configuration and description for all pages.
authorlvitale <lvitale@hg.com.uy>
Fri, 31 Jul 2020 21:11:29 +0000 (18:11 -0300)
committerlvitale <lvitale@hg.com.uy>
Fri, 31 Jul 2020 21:11:29 +0000 (18:11 -0300)
13 files changed:
docs/_config.yml
docs/_layouts/default.html
docs/img/logo_validador_og.png [new file with mode: 0644]
docs/incidence.md
docs/index.md
docs/installation.md
docs/intro-fort.md
docs/intro-rpki.md
docs/logging.md
docs/routers.md
docs/run.md
docs/slurm.md
docs/usage.md

index 2ac473849680590cd8ece93238f11b5c56b9c490..aaebb302aa0a38890f09490402a3cb1fe88644ab 100644 (file)
@@ -6,5 +6,15 @@ defaults:
       path: "" # an empty string here means all files in the project
     values:
       layout: "default"
+      image: "/img/logo_validador_og.png"
 
 fort-latest-version: 1.3.0
+plugins:
+  - jekyll-seo-tag
+#SEO configuration
+title: "FORT Validator - RPKI Relying Party"
+tagline: "FORT Validator is a RPKI Relying Party"
+description: "FORT validator is a RPKI Relying Party. It is a service that performs the validation of the entire RPKI repository, and which serves the resulting ROAs for easy access by your routers."
+lang: en
+twitter:
+  card: summary
index c5fd9d6fbad0e7bd359ed3f09c1701b181c4ee8e..f1ce60f34dd1933eb7d72caba947b9174e0811c5 100644 (file)
@@ -2,7 +2,6 @@
 <html lang="en">
 <head>
        <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
-       <title>{{ page.title }}</title>
        <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
 
        <!-- Bootstrap CSS -->
@@ -13,6 +12,7 @@
        <link href="./css/screen.css" rel="stylesheet" type="text/css">
 
        <meta name="robots" content="index,follow">
+       {% seo %}
 </head>
 
 <body>
diff --git a/docs/img/logo_validador_og.png b/docs/img/logo_validador_og.png
new file mode 100644 (file)
index 0000000..e15b62b
Binary files /dev/null and b/docs/img/logo_validador_og.png differ
index df38c8ac2cbb5435d62c2ec794eb3b51659293e9..7760a4e2970c2d3cb53b516bcb71eb342b216909 100644 (file)
@@ -1,5 +1,6 @@
 ---
 title: Incidence
+description: The incidence section of Fort's configuration file is a means to modify its behavior upon encountering profile violations that, from experience, are often overlooked.
 ---
  
 # {{ page.title }} 
index e733d08c8e438d66662d54c611cba2fedb319e5d..59345077ed7ad7ce6fe1ad420578024e9430b439 100644 (file)
@@ -1,5 +1,6 @@
 ---
 title: Home
+descrption: FORT validator is an MIT-licensed RPKI Relying Party, this is a tool offered as part of the FORT project. It is a service that performs the validation of the entire RPKI repository, and which serves the resulting ROAs for easy access by your routers.
 ---
 
 # {{ page.title }}
index 965899b660cd0d88d273670f681eba9873042bc1..daf0863a114512615dc4caba9177a9dfeaa55b1c 100644 (file)
@@ -1,5 +1,6 @@
 ---
 title: Compilation and Installation
+description: Guide to compile and install FORT Validator.
 ---
 
 # {{ page.title }}
index fdfa5057dff17dc3d1e1a76c90240d2994a1dbe4..5190fc9b46bed906af1d48f4c9a99dc8cdc48acd 100644 (file)
@@ -1,5 +1,6 @@
 ---
 title: Introduction to Fort
+description: FORT Validator is a command line application intended for UNIX operating systems, written in C.
 ---
 
 # {{ page.title }}
index 8892b352872e5286bbd463f73414d411684360e5..428b74788d750b831b027a676ce45a7edb31e908 100644 (file)
@@ -1,5 +1,6 @@
 ---
 title: Introduction to RPKI
+description: The RPKI (Resource Public Key Infrastructure) is a PKI (Public Key Infrastructure) that deals with Internet Resources. (In this context, “resource” refers to IP Addresses and AS numbers.)
 ---
 
 # {{ page.title }}
index c003c7e9873969ac410e3a3698aaebe5196fbcdf..3655f381d3301a6633004c315eae6886fdc7451b 100644 (file)
@@ -1,6 +1,7 @@
 ---
 title: Logging
 command: fort
+description: This is a guide to configure and use the logging attributes of FORT Validator.
 url-log-enabled: "[`--log.enabled`](usage.html#--logenabled)"
 url-log-level: "[`--log.level`](usage.html#--loglevel)"
 url-log-output: "[`--log.output`](usage.html#--logoutput)"
index f5d2856bf83e77d537c5991df72526cee3c44b69..aef866a07b2385036906faa15926e07798aa45e4 100644 (file)
@@ -1,5 +1,6 @@
 ---
 title: Routers
+description: Configuration guide for FORT Validator interaction with routers through RTR protocol.
 ---
  
 # {{ page.title }}
index 095e9a37569d4deb425bc6e910251129aaaf1500..1de4dab7da22502d287dde24ad59583a5435accd 100644 (file)
@@ -1,5 +1,6 @@
 ---
 title: Basic Usage
+description: This is probably all you need, an RTR server will serve the ROAs resulting from a validation rooted at the trust anchors defined by the TALs contained at directory '--tal'.
 ---
 
 # {{ page.title }}
index ddfbc7d66da1fd1ac9db7ffe06ff808ead5c8ce0..db4386117af92982b647ca0f6b899bf28e2bcaf7 100644 (file)
@@ -1,5 +1,6 @@
 ---
 title: SLURM
+description: "Use SLURM to modify the RPKI assertions validated and published by an RTR server"
 ---
 
 # {{ page.title }} 
index 20402930a2e4d14889464cf7e5ac5ce26e948a50..9df1a90bcc0198e471a376c5ff2d5130be39c4f1 100644 (file)
@@ -1,6 +1,7 @@
 ---
 title: Program Arguments
 command: fort
+description: Guide to use arguments of FORT Validator.
 ---
 
 # {{ page.title }}