Switch to https using Caddy proxy.
This commit is contained in:
parent
3f7a2d2d61
commit
f395e5ac6f
19
passman-dev/Caddyfile
Normal file
19
passman-dev/Caddyfile
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
# HTTP site: redirect everything to HTTPS
|
||||||
|
http://localhost {
|
||||||
|
redir https://{host}{uri} permanent
|
||||||
|
}
|
||||||
|
|
||||||
|
# HTTPS site
|
||||||
|
https://localhost {
|
||||||
|
reverse_proxy web:80
|
||||||
|
tls internal
|
||||||
|
|
||||||
|
# Optional: security headers (defense-in-depth)
|
||||||
|
header {
|
||||||
|
X-Content-Type-Options "nosniff"
|
||||||
|
X-Frame-Options "DENY"
|
||||||
|
Referrer-Policy "no-referrer"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -2,8 +2,8 @@
|
|||||||
services:
|
services:
|
||||||
web:
|
web:
|
||||||
build: .
|
build: .
|
||||||
ports:
|
# ports:
|
||||||
- "80:80"
|
# - "80:80"
|
||||||
volumes:
|
volumes:
|
||||||
- ./php:/var/www/html
|
- ./php:/var/www/html
|
||||||
environment:
|
environment:
|
||||||
@ -14,6 +14,18 @@ services:
|
|||||||
depends_on:
|
depends_on:
|
||||||
- db
|
- db
|
||||||
|
|
||||||
|
proxy:
|
||||||
|
image: caddy:2
|
||||||
|
ports:
|
||||||
|
- "80:80"
|
||||||
|
- "443:443"
|
||||||
|
volumes:
|
||||||
|
- ./Caddyfile:/etc/caddy/Caddyfile:ro
|
||||||
|
- caddy_data:/data
|
||||||
|
- caddy_config:/config
|
||||||
|
depends_on:
|
||||||
|
- web
|
||||||
|
|
||||||
db:
|
db:
|
||||||
image: mariadb:11
|
image: mariadb:11
|
||||||
container_name: passman_db
|
container_name: passman_db
|
||||||
@ -30,4 +42,6 @@ services:
|
|||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
dbdata:
|
dbdata:
|
||||||
|
caddy_data:
|
||||||
|
caddy_config:
|
||||||
|
|
||||||
|
|||||||
@ -15,23 +15,23 @@
|
|||||||
<br />
|
<br />
|
||||||
<ul>
|
<ul>
|
||||||
<li>
|
<li>
|
||||||
<a href="http://localhost/passman/register.php">Registration Form</a>
|
<a href="/passman/register.php">Registration Form</a>
|
||||||
</li>
|
</li>
|
||||||
<br />
|
<br />
|
||||||
<li>
|
<li>
|
||||||
<a href="http://localhost/passman/login.php">Login Page</a>
|
<a href="/passman/login.php">Login Page</a>
|
||||||
</li>
|
</li>
|
||||||
<br />
|
<br />
|
||||||
<li>
|
<li>
|
||||||
<a href="http://localhost/passman/logout.php">Logout Page</a>
|
<a href="/passman/logout.php">Logout Page</a>
|
||||||
</li>
|
</li>
|
||||||
<br />
|
<br />
|
||||||
<li>
|
<li>
|
||||||
<a href="http://localhost/passman/dashboard.php">Dashboard</a> (display passwords for websites)
|
<a href="/passman/dashboard.php">Dashboard</a> (display passwords for websites)
|
||||||
</li>
|
</li>
|
||||||
<br />
|
<br />
|
||||||
<li>
|
<li>
|
||||||
<a href="http://localhost/passman/notes.php">Notes</a> (notes/comments/announcements)
|
<a href="/passman/notes.php">Notes</a> (notes/comments/announcements)
|
||||||
</li>
|
</li>
|
||||||
<br />
|
<br />
|
||||||
</ul>
|
</ul>
|
||||||
@ -41,18 +41,18 @@
|
|||||||
<br />
|
<br />
|
||||||
<ul>
|
<ul>
|
||||||
<li>
|
<li>
|
||||||
Test <a href="http://localhost/passman/test_hash.php">hashing</a> functions in PHP (server side)
|
Test <a href="/passman/test_hash.php">hashing</a> functions in PHP (server side)
|
||||||
</li>
|
</li>
|
||||||
<br />
|
<br />
|
||||||
<li>
|
<li>
|
||||||
Test <a href="http://localhost/passman/test_encrypt.php">encrypting/decrypting</a> functions in PHP (server side)
|
Test <a href="/passman/test_encrypt.php">encrypting/decrypting</a> functions in PHP (server side)
|
||||||
</li>
|
</li>
|
||||||
<br />
|
<br />
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<br />
|
<br />
|
||||||
Hacker's side (for using stealing cookies using XSS):
|
Hacker's side (for using stealing cookies using XSS):
|
||||||
<a href="http://localhost/passman/xss">http://localhost/passman/xss</a>
|
<a href="/passman/xss">passman/xss</a>
|
||||||
<br />
|
<br />
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user