Skip to content

πŸš€ Solusi Penyimpanan & Transfer Data yang Aman untuk Rumah Sakit, BPJS, Kemenkes, dan Dinkes!

Notifications You must be signed in to change notification settings

Farrel0xx/implementasi-storageRS

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

3 Commits
Β 
Β 
Β 
Β 

Repository files navigation

πŸš€ SFTP Server untuk BPJS & Rumah Sakit

Diagram SFTP BPJS

πŸ“Œ Kenapa SFTP?

Sistem saat ini (OneDrive) tidak aman & tidak fleksibel: βœ… Data bisa diakses semua orang β†’ Rawan kebocoran data
βœ… Tidak bisa hapus file β†’ Kesalahan input sulit diperbaiki
βœ… Harus buat folder manual tiap hari β†’ Buang waktu

Solusi: Pakai SFTP (Secure File Transfer Protocol) untuk sistem yang lebih aman, cepat, dan fleksibel!


πŸ› οΈ 1. Setup SFTP Server (Untuk BPJS)

πŸ”Ή Install & Konfigurasi SFTP di Linux

# Update & install OpenSSH Server
sudo apt update && sudo apt install openssh-server -y

# Buat user khusus untuk rumah sakit
sudo adduser rumahsakit
sudo passwd rumahsakit

# Buat folder penyimpanan data
sudo mkdir -p /sftp/rumahsakit
sudo chown root:root /sftp
sudo chown rumahsakit:rumahsakit /sftp/rumahsakit

# Batasi akses hanya ke SFTP (tidak bisa login SSH)
echo "Match User rumahsakit
    ChrootDirectory /sftp
    ForceCommand internal-sftp
    X11Forwarding no
    AllowTcpForwarding no" | sudo tee -a /etc/ssh/sshd_config

# Restart SSH service
sudo systemctl restart sshd

βœ… Sekarang server BPJS sudah siap menerima file dari rumah sakit!


πŸ“‚ 2. Akses SFTP dari Windows (Untuk Rumah Sakit)

πŸ”Ή Cara Akses dengan WinSCP / FileZilla

1️⃣ Download WinSCP β†’ https://winscp.net
2️⃣ Masukkan detail server SFTP:

  • Host: IP-Kali-Linux
  • Port: 22
  • Username: rumahsakit
  • Password: [password yang tadi dibuat] 3️⃣ Klik Login β†’ Langsung masuk ke folder /sftp/rumahsakit 4️⃣ Drag & Drop file laporan rumah sakit ke dalam server!

βœ… File langsung tersimpan di server BPJS dengan aman & bisa dihapus/edit kalau ada kesalahan.


πŸ”₯ 3. Test Upload & Download File

πŸ”Ή Dari Windows (WinSCP/FileZilla)

  • Upload file ke server BPJS
  • Download file dari server BPJS ke Windows

πŸ”Ή Dari Terminal di Kali Linux

# Login ke SFTP
sftp rumahsakit@IP-Kali-Linux

# Upload file
put laporan_klaim.pdf

# Download file dari server ke lokal
get data_claim_01.xlsx

# Keluar
exit

βœ… Sekarang rumah sakit bisa kirim & ambil data BPJS dengan mudah!


πŸš€ 4. Demo di Depan BPJS / HealthHackathon

Keunggulan SFTP yang Bisa Ditunjukkan:

βœ” Bisa upload file besar (ber-Giga-Giga) tanpa batas!
βœ” Data lebih aman dibanding OneDrive (terenkripsi SSH).
βœ” Rumah sakit bisa hapus & edit file kalau perlu revisi.
βœ” BPJS bisa ambil data otomatis tanpa ribet tracking manual.
βœ” Bisa buat folder harian otomatis, gak perlu bikin manual.

βœ… SFTP = Solusi terbaik buat BPJS & Rumah Sakit!


πŸ”’ 5. Next Step: Implementasi di BPJS

1️⃣ Coba setup di Kali Linux & tes upload dari WinSCP/FileZilla.
2️⃣ Siapkan presentasi/demo untuk HealthHackathon atau BPJS.
3️⃣ Dorong BPJS untuk upgrade sistem ke SFTP agar lebih aman & efisien.

πŸ“Œ Kalau ada kendala atau error, tinggal tanya! πŸš€πŸ”₯

About

πŸš€ Solusi Penyimpanan & Transfer Data yang Aman untuk Rumah Sakit, BPJS, Kemenkes, dan Dinkes!

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published