mirror of
https://github.com/ad-aures/castopod.git
synced 2026-04-03 23:09:18 +02:00
fix: add public/media folder to castopod bundle
ignore all contents of media folder except index.html file in .gitignore fixes #52
This commit is contained in:
parent
ad8b153f2a
commit
8053d3521b
2 changed files with 14 additions and 0 deletions
5
.gitignore
vendored
5
.gitignore
vendored
|
|
@ -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
public/media/index.html
Normal file
9
public/media/index.html
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>403 Forbidden</title>
|
||||
</head>
|
||||
<body>
|
||||
<p>Directory access is forbidden.</p>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue