Compare commits
5 commits
8a5fd1ca32
...
01f1640a0f
Author | SHA1 | Date | |
---|---|---|---|
|
01f1640a0f | ||
|
dc641bebf1 | ||
|
ff2b880490 | ||
|
1ba2bcffc8 | ||
|
2d54f2346d |
5 changed files with 2334 additions and 372 deletions
7
pillars/roles/mount/old-nextcloud.sls
Normal file
7
pillars/roles/mount/old-nextcloud.sls
Normal file
|
@ -0,0 +1,7 @@
|
|||
mount:
|
||||
sshfs:
|
||||
/mnt/nextcloud:
|
||||
name: nextcloud
|
||||
host: host.actcur.com
|
||||
directory: /mnt/butter/nextcloud
|
||||
user: mount
|
|
@ -27,6 +27,13 @@ nextcloud-pkgs:
|
|||
- mode: 755
|
||||
- makedirs: true
|
||||
|
||||
nextcloud-nginx-confd:
|
||||
file.directory:
|
||||
- name: /etc/nginx/conf.d/
|
||||
- user: root
|
||||
- group: root
|
||||
- mode: 755
|
||||
|
||||
/etc/systemd/system/nextcloud-cron.service.d/:
|
||||
file.directory:
|
||||
- user: root
|
||||
|
|
File diff suppressed because it is too large
Load diff
1921
states/roles/maintain/nextcloud/nextcloud-php.ini.tmp
Normal file
1921
states/roles/maintain/nextcloud/nextcloud-php.ini.tmp
Normal file
File diff suppressed because it is too large
Load diff
|
@ -27,12 +27,16 @@ server {
|
|||
proxy_read_timeout 300;
|
||||
proxy_connect_timeout 300;
|
||||
|
||||
location /archlinux/aur-local {
|
||||
location ~ aur-local {
|
||||
root /mnt/pkgs;
|
||||
}
|
||||
|
||||
location ~ \.(db|sig) {
|
||||
proxy_pass https://mirrors.kernel.org$request_uri;
|
||||
}
|
||||
|
||||
location / {
|
||||
proxy_pass http://repo.miserver.it.umich.edu/;
|
||||
proxy_pass https://mirrors.kernel.org;
|
||||
proxy_cache pkg-cache; # This directive should match the keys_zone option
|
||||
proxy_cache_revalidate on;
|
||||
proxy_cache_min_uses 0;
|
||||
|
|
Loading…
Add table
Reference in a new issue