Commit 8053d352 authored by Yassine Doghri's avatar Yassine Doghri
Browse files

fix: add public/media folder to castopod bundle

ignore all contents of media folder except index.html file in .gitignore

fixes #52
parent ad8b153f
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -134,11 +134,16 @@ node_modules

# public folder
public/*
!public/media
!public/.htaccess
!public/favicon.ico
!public/index.php
!public/robots.txt

# public media folder
public/media/*
!public/media/index.html

#-------------------------
# Docker volumes
#-------------------------
+9 −0
Original line number Diff line number Diff line
<!DOCTYPE html>
<html>
  <head>
    <title>403 Forbidden</title>
  </head>
  <body>
    <p>Directory access is forbidden.</p>
  </body>
</html>