Skip to content
Snippets Groups Projects
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
No related branches found
No related tags found
No related merge requests found
...@@ -134,11 +134,16 @@ node_modules ...@@ -134,11 +134,16 @@ node_modules
# public folder # public folder
public/* public/*
!public/media
!public/.htaccess !public/.htaccess
!public/favicon.ico !public/favicon.ico
!public/index.php !public/index.php
!public/robots.txt !public/robots.txt
# public media folder
public/media/*
!public/media/index.html
#------------------------- #-------------------------
# Docker volumes # Docker volumes
#------------------------- #-------------------------
......
<!DOCTYPE html>
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment