This commit is contained in:
Christophe Maudoux 2022-08-19 22:37:46 +02:00
parent e7d25fa403
commit 0c1e58da66
20 changed files with 26 additions and 28 deletions

View File

@ -184,7 +184,7 @@ Go to "SAML service providers", click on "Add SAML SP" and name it as
you want (example : 'AWX')
In the new subtree 'AWX', open 'Metadata' and paste the content of the
AWX Metadatas, wich can be found at the
AWX Metadata, wich can be found at the
``SAML Service Provider Metadata URL`` in AWX :
https://awx.example.com/sso/metadata/saml/

View File

@ -64,7 +64,7 @@ Configure Bugzilla virtual host like other
internal;
include /etc/nginx/fastcgi_params;
fastcgi_pass unix:/var/run/llng-fastcgi-server/llng-fastcgi.sock;
# Drop post datas
# Drop post data
fastcgi_pass_request_body off;
fastcgi_param CONTENT_LENGTH "";
# Keep original hostname

View File

@ -69,7 +69,7 @@ Configure Dokuwiki virtual host like other
internal;
include /etc/nginx/fastcgi_params;
fastcgi_pass unix:/var/run/llng-fastcgi-server/llng-fastcgi.sock;
# Drop post datas
# Drop post data
fastcgi_pass_request_body off;
fastcgi_param CONTENT_LENGTH "";
# Keep original hostname

View File

@ -66,7 +66,7 @@ Configure Drupal virtual host like other
internal;
include /etc/nginx/fastcgi_params;
fastcgi_pass unix:/var/run/llng-fastcgi-server/llng-fastcgi.sock;
# Drop post datas
# Drop post data
fastcgi_pass_request_body off;
fastcgi_param CONTENT_LENGTH "";
# Keep original hostname

View File

@ -124,7 +124,7 @@ Configure Liferay virtual host like other
internal;
include /etc/nginx/fastcgi_params;
fastcgi_pass unix:/var/run/llng-fastcgi-server/llng-fastcgi.sock;
# Drop post datas
# Drop post data
fastcgi_pass_request_body off;
fastcgi_param CONTENT_LENGTH "";
# Keep original hostname

View File

@ -153,7 +153,7 @@ Configure MediaWiki virtual host like other
internal;
include /etc/nginx/fastcgi_params;
fastcgi_pass unix:/var/run/llng-fastcgi-server/llng-fastcgi.sock;
# Drop post datas
# Drop post data
fastcgi_pass_request_body off;
fastcgi_param CONTENT_LENGTH "";
# Keep original hostname

View File

@ -146,7 +146,7 @@ Edit also OBM configuration to enable LL::NG Handler:
internal;
include /etc/nginx/fastcgi_params;
fastcgi_pass unix:/var/run/llng-fastcgi-server/llng-fastcgi.sock;
# Drop post datas
# Drop post data
fastcgi_pass_request_body off;
fastcgi_param CONTENT_LENGTH "";
# Keep original hostname

View File

@ -68,7 +68,7 @@ Configure phpLDAPadmin virtual host like other
internal;
include /etc/nginx/fastcgi_params;
fastcgi_pass unix:/var/run/llng-fastcgi-server/llng-fastcgi.sock;
# Drop post datas
# Drop post data
fastcgi_pass_request_body off;
fastcgi_param CONTENT_LENGTH "";
# Keep original hostname

View File

@ -143,7 +143,7 @@ authentication URL.
internal;
include /etc/nginx/fastcgi_params;
fastcgi_pass unix:/var/run/llng-fastcgi-server/llng-fastcgi.sock;
# Drop post datas
# Drop post data
fastcgi_pass_request_body off;
fastcgi_param CONTENT_LENGTH "";
# Keep original hostname

View File

@ -78,5 +78,4 @@ variables:
.. tip::
You can use the same Facebook access token in your
applications. It is stored in session datas under the name
``$_facebookToken``\
applications. It is stored in session data under the name ``$_facebookToken``\

View File

@ -139,7 +139,7 @@ Then you can take any virtual host and modify it:
include /etc/nginx/fastcgi_params;
fastcgi_pass unix:/var/run/llng-fastcgi-server/llng-fastcgi.sock;
# Drop post datas
# Drop post data
fastcgi_pass_request_body off;
fastcgi_param CONTENT_LENGTH "";
@ -215,7 +215,7 @@ Example of a protected virtual host for a local application:
internal;
include /etc/nginx/fastcgi_params;
fastcgi_pass /path/to/llng-fastcgi-server.sock;
# Drop post datas
# Drop post data
fastcgi_pass_request_body off;
fastcgi_param CONTENT_LENGTH "";
# Keep original hostname
@ -276,7 +276,7 @@ Reverse-Proxy
internal;
include /etc/nginx/fastcgi_params;
fastcgi_pass /path/to/llng-fastcgi-server.sock;
# Drop post datas
# Drop post data
fastcgi_pass_request_body off;
fastcgi_param CONTENT_LENGTH "";
# Keep original hostname

View File

@ -14,7 +14,7 @@ Lemonldap::NG::Common
Warning: key is not defined, set it in the manager !
→ LemonLDAP::NG uses a key to crypt/decrypt some datas. You have to set
→ LemonLDAP::NG uses a key to crypt/decrypt some data. You have to set
its value in Manager. This message is displayed only when you upgrade
from a version older than 1.0

View File

@ -22,7 +22,7 @@ anything to the user.
If you configure form replay with LL::NG, the Handler will detect forms
to fill, add a javascript in the html page to fill form fields with
dummy datas and submit it, then intercept the POST request and add POST
dummy data and submit it, then intercept the POST request and add POST
data in the request body.
POST data can be static values or computed from user's session.

View File

@ -63,7 +63,7 @@ Nginx configuration
include /etc/nginx/fastcgi_params;
fastcgi_pass localhost:9090;
# Drop post datas
# Drop post data
fastcgi_pass_request_body off;
fastcgi_param CONTENT_LENGTH "";

View File

@ -79,8 +79,7 @@ Macros and groups are stored in session database. Local macros is a
special feature of handler that permit one to have macros useable localy
only. Those macros are calculated only at the first usage and stored in
the local session cache (only for this server) and only if the user
access to the related applications. This avoid to have to many datas
stored.
access to the related applications. This avoid to have to many data stored.
.. code-block:: perl

View File

@ -6,7 +6,7 @@ persistent sessions.
LL::NG Portal provides REST end points for sessions management:
- GET /sessions/<type>/<session-id> : get session datas
- GET /sessions/<type>/<session-id> : get session data
- GET /sessions/<type>/<session-id>/<key> : get a session key value
- GET /sessions/<type>/<session-id>/[k1,k2] : get some keys value
- POST /sessions/<type> : create a session
@ -15,7 +15,7 @@ LL::NG Portal provides REST end points for sessions management:
Sessions for connected users (used by :doc:`LLNG Proxy<authproxy>`):
- GET /session/my/<type> : get session datas
- GET /session/my/<type> : get session data
- GET /session/my/<type>/key : get session key
- DELETE /session/my : ask for logout
- DELETE /sessions/my : ask for global logout (if GlobalLogout plugin is on)

View File

@ -159,7 +159,7 @@ To define keys, you can:
Converting a RSA public key to a certificate
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
If your application complains about the lack of certificate in SAML Metadatas, and you generated a public RSA key instead of a certificate in a previous version of LemonLDAP::NG, you can convert the public key into a certificate without changing the private key.
If your application complains about the lack of certificate in SAML Metadata, and you generated a public RSA key instead of a certificate in a previous version of LemonLDAP::NG, you can convert the public key into a certificate without changing the private key.
Save the private key in a file, and use the ``openssl`` commands to
issue a self-signed certificate:

View File

@ -90,7 +90,7 @@ requesting a Central uWSGI server (Nginx only):
fastcgi_pass 10.1.2.3:9090;
fastcgi_param VHOSTTYPE DevOps;
# Drop post datas
# Drop post data
fastcgi_pass_request_body off;
fastcgi_param CONTENT_LENGTH "";
@ -300,7 +300,7 @@ directory.
# Force handler type:
fastcgi_param VHOSTTYPE DevOps;
# Drop post datas
# Drop post data
fastcgi_pass_request_body off;
fastcgi_param CONTENT_LENGTH "";

View File

@ -56,7 +56,7 @@ Key Description
Connection
----------
Datas concerning the first connection to the portal
Data concerning the first connection to the portal
========== ========================================================================================================================================
Key Description
@ -69,7 +69,7 @@ ipAddr IP of the user (special care must be taken is you run the portal :doc
Authentication
--------------
Datas around the authentication process.
Data around the authentication process.
=================== =========================================================================================================
Key Description
@ -95,7 +95,7 @@ Key Description
SAML
----
Datas related to SAML protocol
Data related to SAML protocol
=================== ================================================
Key Description

View File

@ -3,7 +3,7 @@ Writing rules and headers
LL::NG manages applications by their hostname (Apache Virtual Hosts or
Nginx Block Servers). Rules are used for protecting applications,
and HTTP headers are appended to each request for sending datas to protected
and HTTP headers are appended to each request for sending data to protected
applications (for logs, profiles,...).