Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ossec/archive-ossec.github.io-archive
OSSEC website on Github
https://github.com/ossec/archive-ossec.github.io-archive
Last synced: 7 days ago
JSON representation
OSSEC website on Github
- Host: GitHub
- URL: https://github.com/ossec/archive-ossec.github.io-archive
- Owner: ossec
- Created: 2015-01-19T15:20:15.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2019-10-04T03:55:27.000Z (about 5 years ago)
- Last Synced: 2024-03-26T00:08:31.559Z (8 months ago)
- Language: HTML
- Homepage: http://ossec.github.io
- Size: 1.96 MB
- Stars: 2
- Watchers: 7
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ossec.github.io
This site is built with Sphinx using the code base in ossec.github.io/_project.
To visit the finished website, go to http://ossec.github.io. Most of the website
should remain the same over time except when we have in OSSEC releases or want to
add a blog entry. After cloning or forking this repo, follow these instructions to
revise the website content for downloads or blogs.## Updating the Downloads page
1. cd to _project/
2. Open the downloads.rst file
3. Make changes to links where necessary.
4. Run *make clean* then *make html*.
5. Open _project/_build/html/index.html in a browser to see the new website.
6. Repeat steps 2-4 as necessary until the Downloads page looks right.
7. Replace the ossec.github.io/downloads.html with _project/_build/html/downloads.html
8. cd to the top level ossec.github.io
9. Push all the revisions to ossec.github.io.## Adding a blog entry
1. cd _project/blog/posts
2. Create a file using the naming convention *YYYY-mm-dd-TITLE.rst* in the blog/posts directory.
3. Open this file in the editor of your choice.
4. Replace *TITLE* with the title of your blog.
5. Add a section at the top of the blog file that looks like this:
.. post:: MMM DD, YYYY
:tags: your tags
:category: your categories
:author: your name=====
TITLE
=====
6. Replace MMM with the month abbreviation of your blog, e.g. Jan, Feb, etc.
7. Replace DD with the day number, e.g. 01, 02, 03, 3tc.
8. Replace YYYY with the year. Note for steps 4-6 check the files in blob/posts for examples.
9. Fill in the *your tags*, *your categories* and *your name* sections.
10. Write the blog content below your TITLE section.
11. cd to _project/
12. Run *make clean* then *make html*.
13. Open _project/_build/html/index.html in a browser to see the new website.
14. Repeat steps 7-10 until your blog content looks right.
15. Replace ossec.github.io/blog.html with _project/_build/html/_blog.html.
16. Copy the HTML version of your blog from _project/_build/html/blog/posts to ossec.github.io/blog/posts/.
17. cd to the top level ossec.github.io
18. Push all the revisions to ossec.github.io.