Ansible builds and deploys the documentation
This commit is contained in:
parent
3af2ec71b6
commit
37efebe85b
6 changed files with 55 additions and 1 deletions
|
|
@ -1,8 +1,36 @@
|
|||
# the upstream component nginx needs to connect to
|
||||
upstream note{
|
||||
upstream note {
|
||||
server unix:///var/www/note_kfet/note_kfet.sock; # file socket
|
||||
}
|
||||
|
||||
{% if note.doc_enabled %}
|
||||
# Redirect doc HTTP to doc HTTPS
|
||||
server {
|
||||
listen 80;
|
||||
listen [::]:80;
|
||||
server_name {{ note.doc_url }};
|
||||
|
||||
location / {
|
||||
return 301 https://{{ note.doc_url }}$request_uri;
|
||||
}
|
||||
}
|
||||
|
||||
# configuration of the documentation website
|
||||
server {
|
||||
listen 443 ssl;
|
||||
listen [::]:443 ssl;
|
||||
|
||||
server_name {{ note.doc_url }};
|
||||
root /var/www/documentation;
|
||||
charset utf-8;
|
||||
|
||||
ssl_certificate /etc/letsencrypt/live/{{ note.server_name }}/fullchain.pem;
|
||||
ssl_certificate_key /etc/letsencrypt/live/{{ note.server_name }}/privkey.pem;
|
||||
include /etc/letsencrypt/options-ssl-nginx.conf;
|
||||
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem;
|
||||
}
|
||||
{% endif %}
|
||||
|
||||
# Redirect HTTP to nk20 HTTPS
|
||||
server {
|
||||
listen 80 default_server;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue