Skip to content

Instantly share code, notes, and snippets.

@aman207
aman207 / 1. mealie-next.yml
Last active August 1, 2022 17:30
mealie-next ansible playbook
View 1. mealie-next.yml
---
- hosts: all
remote_user: onionadmin
become: true
gather_facts: no
tasks:
- name: install nodejs LTS (v16) repo
shell:
cmd: 'curl -fsSL https://deb.nodesource.com/setup_lts.x | sudo -E bash -'
@aman207
aman207 / 1. change-detection.yml
Created July 29, 2022 00:18
#change-detection ansible playbook
View 1. change-detection.yml
---
- hosts: all
remote_user: onionadmin
become: true
gather_facts: no
tasks:
- name: install nodejs LTS (v16) repo
shell:
cmd: 'curl -fsSL https://deb.nodesource.com/setup_lts.x | sudo -E bash -'
@aman207
aman207 / #mealie ansible playbook
Last active February 4, 2022 17:31
playbook to create an instance of mealie without using docker
View #mealie ansible playbook
The files below are what I used to create an instance of mealie without having to use docker. It uses Ubuntu 20.04 as the OS.
Don't expect the ansible playbook to work via copy and paste, you'll need to edit it according to your setup.
This is just an example of the steps required.
View nginx firefly-iii config (with csv-importer)
server {
listen 80 default_server;
index index.php index.html index.htm
server_name _;
location /csv {
alias /var/www/csv-importer/public/;
try_files $uri $uri/ @csv;
autoindex on;
sendfile off;
location ~ \.php$ {