40 lines
1.1 KiB
Plaintext
40 lines
1.1 KiB
Plaintext
ttrss_url_path: http://arch3/tt-rss/
|
|
|
|
gitea_http_domain: arch3
|
|
gitea_root_url: http://arch3:3000
|
|
|
|
chainetv_repo_branch: dev
|
|
|
|
certbot_create_if_missing: false
|
|
|
|
nginx_vhosts:
|
|
- listen: "80"
|
|
server_name: "_"
|
|
filename: "default.conf"
|
|
state: "present"
|
|
template: "{{ nginx_vhost_template }}"
|
|
extra_parameters: |
|
|
error_page 500 502 503 504 /50x.html;
|
|
location = /50x.html {
|
|
root /usr/share/nginx/html;
|
|
}
|
|
location / {
|
|
index index.php index.html index.htm ;
|
|
default_type text/html;
|
|
|
|
}
|
|
location =/ {
|
|
rewrite ^ /starter;
|
|
}
|
|
|
|
location ~ \.php$ {
|
|
# try_files $uri =404;
|
|
fastcgi_split_path_info ^(.+\.php)(/.+)$;
|
|
fastcgi_pass unix:/run/php-fpm/php-fpm.sock;
|
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
|
fastcgi_read_timeout 800;
|
|
fastcgi_index index.php;
|
|
include fastcgi_params;
|
|
}
|
|
include /etc/nginx/conf.d/*.default;
|
|
|