Compare commits
17
Commits
f4c8a78587
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b585b022d6 | ||
|
|
fea10b6bd9 | ||
|
|
7549d26ea1 | ||
|
|
f6bd48fbf5 | ||
|
|
02bd6471b4 | ||
|
|
e6a73d57d2 | ||
|
|
eaf2512691 | ||
|
|
abffc2de6a | ||
|
|
62a984a3b8 | ||
|
|
9acdcbff23 | ||
|
|
ecf4ee33e4 | ||
|
|
c70b1a1c24 | ||
|
|
30ff464ad3 | ||
|
|
6a6c0dd45a | ||
|
|
c5359f8a7e | ||
|
|
f15b55f9b3 | ||
|
|
ca262c9e3e |
@@ -0,0 +1,26 @@
|
|||||||
|
name: Deploy PHP App
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
deploy:
|
||||||
|
runs-on: ubuntu-24.04
|
||||||
|
labels:
|
||||||
|
- "ubuntu-latest:docker://gitea/runner-images:ubuntu-24.04-slim"
|
||||||
|
- "ubuntu-24.04:docker://gitea/runner-images:ubuntu-24.04-slim"
|
||||||
|
steps:
|
||||||
|
- name: Checkout Code
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Deploy via SSH
|
||||||
|
uses: appleboy/ssh-action@master
|
||||||
|
with:
|
||||||
|
host: ${{ secrets.SSH_HOST }}
|
||||||
|
username: ${{ secrets.SSH_USER }}
|
||||||
|
key: ${{ secrets.SSH_PRIVATE_KEY }}
|
||||||
|
script: |
|
||||||
|
cd /home/willysr/public_html
|
||||||
|
git fetch origin master
|
||||||
|
git reset --hard origin/master
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
Here you can see a list of research topics that i'm interested in
|
|
||||||
if you are planning to take thesis, this should gives you an idea of a proposal
|
|
||||||
More topics will be added in the future
|
|
||||||
|
|
||||||
contact me at willysr@ti.ukdw.ac.id
|
|
||||||
|
|
||||||
TOPICS
|
|
||||||
|
|
||||||
Secure Authentication System
|
|
||||||
- Password-less Authentication System
|
|
||||||
- Secure Two-Factor Authentication System
|
|
||||||
See http://www.fidoalliance.org/ and http://www.dynalogin.org/
|
|
||||||
for more information about this topic
|
|
||||||
@@ -74,7 +74,7 @@ include "includes/navbar.html";
|
|||||||
<li>Lecturer at <a href="http://www.ukdw.ac.id">UKDW</a> (2007-Current)</li>
|
<li>Lecturer at <a href="http://www.ukdw.ac.id">UKDW</a> (2007-Current)</li>
|
||||||
<li>Head of the UKDW Procurement Division (2012-2015).</li>
|
<li>Head of the UKDW Procurement Division (2012-2015).</li>
|
||||||
<li>Head of Duta Wacana Training Center (2012-2015)</li>
|
<li>Head of Duta Wacana Training Center (2012-2015)</li>
|
||||||
<li>Vice Dean: Students, Alumni, and Partnership Affairs, Information Technology Faculty, UKDW (2015-2023).</li>
|
<li>Vice Dean: Students, Alumni, and Partnership Affairs, Information Technology Faculty, UKDW (2016-2023).</li>
|
||||||
<li>Coordinator of External Outbound Program (2022 - 2026).</li>
|
<li>Coordinator of External Outbound Program (2022 - 2026).</li>
|
||||||
<li>Head of IT Center, UKDW (2026 - present).</li>
|
<li>Head of IT Center, UKDW (2026 - present).</li>
|
||||||
</ol>
|
</ol>
|
||||||
|
|||||||
@@ -0,0 +1,76 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<head>
|
||||||
|
<title>Willy Sudiarto Raharjo - System Administration</title>
|
||||||
|
<meta name="keywords" content="Willy, Willy Sudiarto Raharjo, Willy SR, WillySR, UKDW, Dosen, Universitas Kristen Duta Wacana, System Administration, Informatika" />
|
||||||
|
<meta name="description" content="Situs ini berisi halaman materi untuk kelas Administrasi Sistem Universitas Kristen Duta Wacana" />
|
||||||
|
<link rel="icon" href="../images/favicon.ico" type="image/ico" />
|
||||||
|
<style type="text/css">
|
||||||
|
@import "../includes/index.css";
|
||||||
|
@import "../includes/normalize.css";
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<?php
|
||||||
|
include "../includes/functions.php";
|
||||||
|
?>
|
||||||
|
<header role="banner">
|
||||||
|
<?php
|
||||||
|
include "../includes/courses.php";
|
||||||
|
?>
|
||||||
|
</header>
|
||||||
|
<section class="title">Administrasi Sistem</section>
|
||||||
|
<section class="sidebar">
|
||||||
|
<header>
|
||||||
|
<h3>Jadwal</h3>
|
||||||
|
</header>
|
||||||
|
<aside>
|
||||||
|
<p>Grup A<br/>Hari Senin<br/>Jam 08.30 - 11.20<br/>Lab Big Data</p>
|
||||||
|
</aside>
|
||||||
|
</section>
|
||||||
|
<section class="classinfo">
|
||||||
|
<section class="description">
|
||||||
|
<header>
|
||||||
|
<h1>PENGANTAR</h1>
|
||||||
|
</header>
|
||||||
|
<p>Mata kuliah Administrasi Sistem memperkenalkan kepada mahasiswa mengenai administrasi sistem berbasis Linux. Operating System yang digunakan pada matakuliah ini adalah Red Hat Enterprise Linux 9.3 dan menggunakan Platform Red Hat Academy.</p>
|
||||||
|
</section>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="material">
|
||||||
|
<header>
|
||||||
|
<h1>MATERI</h1>
|
||||||
|
</header>
|
||||||
|
<ol>
|
||||||
|
<li>Syllabus</li>
|
||||||
|
<li>Introduction to Linux OS</li>
|
||||||
|
<li>File System and File Management</li>
|
||||||
|
<li>Users and Groups Management</li>
|
||||||
|
<li>Process Monitoring and Control Services</li>
|
||||||
|
<li>Secure SSH Configuration</li>
|
||||||
|
<li>Linux Networking & System Resources</li>
|
||||||
|
<li>Package Management</li>
|
||||||
|
<li>Linux File Systems</li>
|
||||||
|
<li>Scheduling</li>
|
||||||
|
<li>Log and Archive Management</li>
|
||||||
|
<li>Security and System Tuning</li>
|
||||||
|
<li>Storage Management</li>
|
||||||
|
<li>Firewall Management</li>
|
||||||
|
<li>Web Server Management</li>
|
||||||
|
<li>Containers</li>
|
||||||
|
</ol>
|
||||||
|
</section>
|
||||||
|
<section class="references">
|
||||||
|
<header>
|
||||||
|
<h1>REFERENSI</h1>
|
||||||
|
</header>
|
||||||
|
<ol>
|
||||||
|
<li><a href="https://www.redhat.com/en/services/training/getting-started-with-linux-fundamentals/">Getting Started with Linux Fundamentals</a></li>
|
||||||
|
<li><a href="https://www.redhat.com/en/services/training/rh124-red-hat-system-administration-i/">Red Hat System Administration I</a></li>
|
||||||
|
<li><a href="https://www.redhat.com/en/services/training/rh134-red-hat-system-administration-ii/">Red Hat System Administration II</a></li>
|
||||||
|
</ol>
|
||||||
|
</section>
|
||||||
|
<?php
|
||||||
|
include "../includes/footer.php";
|
||||||
|
?>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -24,7 +24,7 @@ include "../includes/courses.php";
|
|||||||
<h3>Jadwal</h3>
|
<h3>Jadwal</h3>
|
||||||
</header>
|
</header>
|
||||||
<aside>
|
<aside>
|
||||||
<p>Grup A<br/>Hari Selasa<br/>Jam 07.30 - 10.20<br/>Lab Big Data</p>
|
<p>Grup A<br/>Hari Kamis<br/>Jam 13.30 - 16.20<br/>Lab Big Data</p>
|
||||||
</aside>
|
</aside>
|
||||||
</section>
|
</section>
|
||||||
<section class="classinfo">
|
<section class="classinfo">
|
||||||
|
|||||||
@@ -25,7 +25,7 @@ include "../includes/courses.php";
|
|||||||
</header>
|
</header>
|
||||||
<aside>
|
<aside>
|
||||||
<p>
|
<p>
|
||||||
Grup A<br/>Hari Rabu<br/>Jam 07:30 - 10:00
|
Grup A<br/>Hari Rabu<br/>Jam 07:30 - 10:00<br/>Ruang Lab Big Data
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
</aside>
|
</aside>
|
||||||
@@ -56,7 +56,7 @@ include "../includes/courses.php";
|
|||||||
<li>Docker Compose</li>
|
<li>Docker Compose</li>
|
||||||
<li>Docker Swarm</li>
|
<li>Docker Swarm</li>
|
||||||
<li>Docker Build and Docker Registries (Docker Hub)</li>
|
<li>Docker Build and Docker Registries (Docker Hub)</li>
|
||||||
<li>Introduction to Amazon ECS</li>
|
<li>Introduction to Container Orchestration Tool (Dockhand)</li>
|
||||||
<li>Introduction to Kubernetes Cluster Architectures and Installation</li>
|
<li>Introduction to Kubernetes Cluster Architectures and Installation</li>
|
||||||
<li>Kubernetes Workloads (Pods, Deployment, ReplicaSets, NameSpaces)</li>
|
<li>Kubernetes Workloads (Pods, Deployment, ReplicaSets, NameSpaces)</li>
|
||||||
<li>Kubernetes Networking Services (NodePort, ClusterIP, LoadBalancer, DNS, Port Forwarding)</li>
|
<li>Kubernetes Networking Services (NodePort, ClusterIP, LoadBalancer, DNS, Port Forwarding)</li>
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ include "../includes/courses.php";
|
|||||||
<h3>Jadwal</h3>
|
<h3>Jadwal</h3>
|
||||||
</header>
|
</header>
|
||||||
<aside>
|
<aside>
|
||||||
<p>Grup A<br/>Hari Rabu<br/>Jam 10:30 - 13.20<br/>Ruang </p>
|
<p>Grup A<br/>Hari Rabu<br/>Jam 13:30 - 16.20<br/>Lab Big Data</p>
|
||||||
</aside>
|
</aside>
|
||||||
</section>
|
</section>
|
||||||
<section class="classinfo">
|
<section class="classinfo">
|
||||||
@@ -48,7 +48,7 @@ akhir mata kuliah ini mahasiswa mampu untuk melakukan pengelolaan dasar dari seb
|
|||||||
<li>User Management</li>
|
<li>User Management</li>
|
||||||
<li>Storage Engines</li>
|
<li>Storage Engines</li>
|
||||||
<li>Character Sets & Collations</li>
|
<li>Character Sets & Collations</li>
|
||||||
<liTransactions & Locking</li>
|
<li>Transactions & Locking</li>
|
||||||
<li>Log Management</li>
|
<li>Log Management</li>
|
||||||
<li>Replication</li>
|
<li>Replication</li>
|
||||||
<li>Backup & Restore</li>
|
<li>Backup & Restore</li>
|
||||||
|
|||||||
@@ -2,17 +2,14 @@
|
|||||||
<ul>
|
<ul>
|
||||||
<li><a href="../index.php">Home</a></li>
|
<li><a href="../index.php">Home</a></li>
|
||||||
<li>|</li>
|
<li>|</li>
|
||||||
<li><a href="../kakom-ti/">CompSec</a></li>
|
<li><a href="../dbadmin-ti/">DB Admin</a></li>
|
||||||
<li>|</li>
|
<li>|</li>
|
||||||
<li><a href="../container-ti/">Container Orchestration</a></li>
|
<li><a href="../container-ti/">Container Orchestration</a></li>
|
||||||
<li>|</li>
|
<li>|</li>
|
||||||
<li><a href="../nosql-ti/">NoSQL Database</a></li>
|
<li><a href="../tekkom-ti/">Computer Technology</a></li>
|
||||||
<li>|</li>
|
<li>|</li>
|
||||||
<li><a href="../cloud-infrastructure-ti/">Cloud infrastructure</a></li>
|
<li><a href="../cloud-infrastructure-ti/">Cloud infrastructure</a></li>
|
||||||
|
<li>|</li>
|
||||||
|
<li><a href="../manpro-ti/">Project Management</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
|
||||||
<ul id="socialbar">
|
|
||||||
<li class="facebook"><a href="http://www.facebook.com/willysr">Facebook</a></li>
|
|
||||||
<li class="twitter"><a href="http://www.twitter.com/willysr2804">Twitter</a></li>
|
|
||||||
</ul>
|
|
||||||
|
|||||||
@@ -22,12 +22,6 @@ include "includes/navbar.html";
|
|||||||
?>
|
?>
|
||||||
</header>
|
</header>
|
||||||
<section class="right">
|
<section class="right">
|
||||||
<section class="quotes">
|
|
||||||
<?php
|
|
||||||
include "includes/quotes.php";
|
|
||||||
?>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section class="biography">
|
<section class="biography">
|
||||||
<header>Short Biography</header>
|
<header>Short Biography</header>
|
||||||
<p>Willy Sudiarto Raharjo obtained his Bachelor Degree and Master degree in Computer Science from <a href="http://www.ukdw.ac.id/">Duta Wacana Christian University</a> in 2005 and <a href="http://www.ugm.ac.id/">Gadjah Mada
|
<p>Willy Sudiarto Raharjo obtained his Bachelor Degree and Master degree in Computer Science from <a href="http://www.ukdw.ac.id/">Duta Wacana Christian University</a> in 2005 and <a href="http://www.ugm.ac.id/">Gadjah Mada
|
||||||
|
|||||||
+1
-1
@@ -24,7 +24,7 @@ include "../includes/courses.php";
|
|||||||
<h3>Jadwal</h3>
|
<h3>Jadwal</h3>
|
||||||
</header>
|
</header>
|
||||||
<aside>
|
<aside>
|
||||||
<p>Grup A<br/> Senin<br/>Hari 08.30 - 11.20<br/>Jam <br/>Ruang</p>
|
<p>Grup A<br/> Hari Kamis<br/>Jam 07.30 - 11.20<br/>Ruang: D.2.1</p>
|
||||||
</aside>
|
</aside>
|
||||||
</section>
|
</section>
|
||||||
<section class="classinfo">
|
<section class="classinfo">
|
||||||
|
|||||||
+12
-11
@@ -24,8 +24,7 @@ include "../includes/courses.php";
|
|||||||
<h3>Jadwal</h3>
|
<h3>Jadwal</h3>
|
||||||
</header>
|
</header>
|
||||||
<aside>
|
<aside>
|
||||||
<p>Grup C<br/>Hari Selasa<br/>Jam 07.30 - 10.20<br/>Ruang </p>
|
<p>Grup A<br/>Hari Selasa<br/>Jam 10.30 - 13.20<br/>Ruang C.3.7</p>
|
||||||
<p>Grup B<br/>Hari Selasa<br/>Jam 10.30 - 13.20<br/>Ruang </p>
|
|
||||||
</aside>
|
</aside>
|
||||||
</section>
|
</section>
|
||||||
<section class="classinfo">
|
<section class="classinfo">
|
||||||
@@ -44,19 +43,19 @@ include "../includes/courses.php";
|
|||||||
</header>
|
</header>
|
||||||
<ol>
|
<ol>
|
||||||
<li>Syllabus</li>
|
<li>Syllabus</li>
|
||||||
<li>Hardware</li>
|
<li>Introduction to the World of Technology</li>
|
||||||
<li>How Computer Works</li>
|
|
||||||
<li>Programming Languages</li>
|
|
||||||
<li>Data Representation</li>
|
<li>Data Representation</li>
|
||||||
<li>Algorithms</li>
|
<li>Computing Hardwares (System Unit, Processing, Memory, Storage, I/O)</li>
|
||||||
<li>Operating Systems</li>
|
<li>Operating Systems</li>
|
||||||
<li>Memory management</li>
|
<li>Algorithms</li>
|
||||||
<li>Data Structure</li>
|
|
||||||
<li>Operators</li>
|
|
||||||
<li>Databases</li>
|
<li>Databases</li>
|
||||||
<li>Computer Networks</li>
|
<li>Computer Networks</li>
|
||||||
<li>Introduction to AI</li>
|
<li>Web Technologies</li>
|
||||||
<li>Computer and society</li>
|
<li>Introduction to Artificial Intelligence</li>
|
||||||
|
<li>Generative AI</li>
|
||||||
|
<li>Computer Security and Privacy</li>
|
||||||
|
<li>Cloud Computing</li>
|
||||||
|
<li>Computer Ethics</li>
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
<section class="references">
|
<section class="references">
|
||||||
@@ -65,6 +64,8 @@ include "../includes/courses.php";
|
|||||||
</header>
|
</header>
|
||||||
<ol>
|
<ol>
|
||||||
<li>Understanding Computer Today & Tomorrow (Deborah Morley, Charles S. Parker)</li>
|
<li>Understanding Computer Today & Tomorrow (Deborah Morley, Charles S. Parker)</li>
|
||||||
|
<li>Computing Essentials 2023, 29th edition (Timothy O’Leary, Linda O’Leary, Daniel O’Leary)</li>
|
||||||
|
<li>Computer Science: An Overview 13th Edition (J. Glenn Brookshear, & Brookshear, J. G)</li>
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
<?php
|
<?php
|
||||||
|
|||||||
Reference in New Issue
Block a user