-
-
Notifications
You must be signed in to change notification settings - Fork 145
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
234 additions
and
201 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,29 @@ | ||
Ansible OpenWISP2 | ||
================= | ||
Ansible OpenWISP | ||
================ | ||
|
||
Ansible role that installs the OpenWISP Server Application. | ||
|
||
**Recommended ansible version**: 2.12. | ||
Tested on **Debian (Bullseye)**, **Ubuntu (20/22 LTS)**. | ||
**Recommended ansible version**: ``2.12`` | ||
|
||
.. toctree:: | ||
:caption: User Docs | ||
:maxdepth: 1 | ||
|
||
./system-requirements.rst | ||
./deploying-openwisp.rst | ||
./automatic-ssl-support.rst | ||
./enabling-monitoring.rst | ||
./enabling-firmware-upgrader.rst | ||
./enabling-network-topology.rst | ||
./enabling-radius.rst | ||
./deploying-custom-static-content.rst | ||
./configuring-cors-headers.rst | ||
./installing-on-vm.rst | ||
./troubleshooting.rst | ||
./role-variables.rst | ||
./user/system-requirements.rst | ||
./user/quickstart.rst | ||
./user/certbot-ssl.rst | ||
./user/enabling-monitoring.rst | ||
./user/enabling-firmware-upgrader.rst | ||
./user/enabling-network-topology.rst | ||
./user/enabling-radius.rst | ||
./user/deploying-custom-static-content.rst | ||
./user/configuring-cors-headers.rst | ||
./user/installing-on-vm.rst | ||
./user/troubleshooting.rst | ||
./user/role-variables.rst | ||
|
||
.. toctree:: | ||
:caption: Developer Docs | ||
:maxdepth: 2 | ||
:maxdepth: 1 | ||
|
||
Developer Docs Index <developer/index.rst> | ||
./developer/installation.rst |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
.. note:: | ||
|
||
This documentation page is aimed at developers who want to customize, | ||
change or extend the code of Ansible OpenWISP2 in order to modify its | ||
behavior (eg: for personal or commercial purposes or to fix a bug, | ||
implement a new feature or contribute to the project in general). | ||
|
||
If you aren't a developer and you are looking for information on how | ||
to use OpenWISP, please refer to: | ||
|
||
- :doc:`General OpenWISP Quickstart </user/quickstart>` | ||
- :doc:`Ansible OpenWISP2 User Docs </ansible-openwisp2/index>` |
10 changes: 5 additions & 5 deletions
10
docs/user/automatic-ssl-support.rst → docs/user/certbot-ssl.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,14 @@ | ||
Deploying custom static content | ||
Deploying Custom Static Content | ||
=============================== | ||
|
||
For deploying custom static content (HTML files, etc.) add all the static | ||
content in ``files/ow2_static`` directory. The files inside | ||
``files/ow2_static`` will be uploaded to a directory named | ||
``static_custom`` in ``openwisp2_path``. | ||
|
||
This is helpful for `customizing OpenWISP's theme | ||
<https://github.com/openwisp/openwisp-utils#openwisp_admin_theme_links>`__. | ||
This is helpful for :ref:`customizing OpenWISP's theme | ||
<openwisp_admin_theme_links>`. | ||
|
||
E.g., if you added a custom CSS file in | ||
``files/ow2_static/css/custom.css``, the file location to use in | ||
`OPENWISP_ADMIN_THEME_LINKS | ||
<https://github.com/openwisp/openwisp-utils#openwisp_admin_theme_links>`__ | ||
setting will be ``css/custom.css``. | ||
:ref:`openwisp_admin_theme_links` setting will be ``css/custom.css``. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
Enabling the Monitoring module | ||
Enabling the Monitoring Module | ||
============================== | ||
|
||
The `Monitoring module <https://openwisp.io/docs/user/monitoring.html>`__ | ||
is enabled by default, it can be disabled by setting | ||
``openwisp2_monitoring`` to ``false``. | ||
The :doc:`Monitoring module </monitoring/index>` is enabled by default, it | ||
can be disabled by setting ``openwisp2_monitoring`` to ``false``. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.