devel.tina.dcs

This server has PHP & MySQL installed locally, but also LXD containers

localhost

SSL Certificate — Trust the internal CA

This server uses an internal Certificate Authority (mkcert) to provide HTTPS. To avoid browser security warnings, you need to trust the CA certificate on your machine.

Download the CA certificate: devel.tina.dcs-rootCA.pem

Linux (system-wide)
# Debian/Ubuntu
sudo cp devel.tina.dcs-rootCA.pem /usr/local/share/ca-certificates/mkcert-rootCA.crt
sudo update-ca-certificates

# RHEL/Fedora/CentOS
sudo cp devel.tina.dcs-rootCA.pem /etc/pki/ca-trust/source/anchors/mkcert-rootCA.crt
sudo update-ca-trust
macOS (system-wide)
sudo security add-trusted-cert -d -r trustRoot -k /Library/Keychains/System.keychain devel.tina.dcs-rootCA.pem
Windows (system-wide)
# PowerShell (as Administrator)
Import-Certificate -FilePath devel.tina.dcs-rootCA.pem -CertStoreLocation Cert:\LocalMachine\Root

Or double-click devel.tina.dcs-rootCA.pem → "Install Certificate" → "Local Machine" → "Place all certificates in the following store" → "Trusted Root Certification Authorities"

Firefox (all operating systems)
  1. Download devel.tina.dcs-rootCA.pem
  2. Settings → Privacy & Security → Certificates → View Certificates
  3. Authorities tab → Import → select devel.tina.dcs-rootCA.pem
  4. Check "Trust this CA to identify websites" → OK
  5. Restart Firefox
Chrome / Edge / Safari

These browsers use the operating system trust store. Follow the system-wide instructions above for your OS.

PHP 8.1

PHP 8.3

PHP 8.4

PHP 8.5


test transfers

Server: 192.168.0.32 — used by devs & QA to test FTP, SFTP, WebDAV and other connections.

Login: user
  • Username: user
  • Password: pass
Login: user2
  • Username: user2
  • Password: unknown
Login: insecure-test-user
  • Username: insecure-test-user
  • Password: none (key-based authentication only)
  • Reference: TD-11282
  • Download the private key: insecure-test-user-key
chmod 600 insecure-test-user-key
ssh -i insecure-test-user-key insecure-test-user@192.168.0.32

Warning: This key is for test transfers only. Do not use it for production or sensitive systems.