Config adjustments for Jellyfin/Samba deployment

- Ignored .vscode
- Added firewall exclusion option
- Allowed guest access in Samba
This commit is contained in:
2023-06-09 22:26:47 -04:00
parent 74a559f1f6
commit 228cd5795b
5 changed files with 16 additions and 3 deletions

View File

@@ -13,7 +13,16 @@
[{{ share.name }}]
path = {{ share.path }}
browsable = yes
{% if share.guest_allow is defined and share.guest_allow %}
guest ok = yes
{% else %}
guest ok = no
{% endif %}
read only = {{ 'yes' if share.read_only | default(false) else 'no' }}
{% if share.valid_users is defined %}
valid users = {{ share.valid_users }}
{% endif %}
{% if share.force_user is defined %}
force user = {{ share.force_user }}
{% endif %}
{% endfor %}