This repository has been archived by the owner on Dec 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
45 changed files
with
2,608 additions
and
2,031 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
Options -Indexes | ||
RewriteEngine On | ||
|
||
RewriteRule ^(.+)\.json$ index.php?q=json.$1.php [L,QSA] | ||
RewriteRule ^(.+)\.json$ index.php?_PAGE=json.$1.php [L,QSA] | ||
|
||
RewriteCond %{REQUEST_FILENAME} !-f | ||
RewriteCond %{REQUEST_FILENAME} !-d | ||
RewriteCond %{REQUEST_URI} !=/favicon.ico | ||
RewriteRule ^(.*)$ index.php?page=$1 [L,QSA] | ||
RewriteRule ^(.*)$ index.php?_PAGE=$1 [L,QSA] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<!DOCTYPE html> | ||
<html lang="en" class="h-100"> | ||
|
||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | ||
<meta name="description" content=""> | ||
<meta name="author" content="NodeList"> | ||
<title>404 Page Not Found</title> | ||
|
||
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.5.3/css/bootstrap.min.css" rel="stylesheet"> | ||
<link href="https://cdnjs.cloudflare.com/ajax/libs/bootswatch/4.5.3/flatly/bootstrap.min.css" rel="stylesheet"> | ||
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"> | ||
</head> | ||
|
||
<body class="d-flex flex-column h-100 text-center"> | ||
<main class="flex-shrink-0"> | ||
<div class="container"> | ||
<div class="row"> | ||
<div class="col"> | ||
<div class="mx-auto w-50"> | ||
<h2 class="mt-5 mb-3">The Page Is Missing!</h2> | ||
<p> | ||
The requested page is not found. | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</main> | ||
|
||
<footer class="footer mt-auto py-3"> | ||
<div class="container"> | ||
<span class="text-muted"><i class="fa fa-github"></i> <a href="https://github.com/seikan/NodeList" target="_blank">Node List</a></span> | ||
</div> | ||
</footer> | ||
</body> | ||
|
||
</html> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<!DOCTYPE html> | ||
<html lang="en" class="h-100"> | ||
|
||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | ||
<meta name="description" content=""> | ||
<meta name="author" content="NodeList"> | ||
<title>500 Internal Server Error</title> | ||
|
||
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.5.3/css/bootstrap.min.css" rel="stylesheet"> | ||
<link href="https://cdnjs.cloudflare.com/ajax/libs/bootswatch/4.5.3/flatly/bootstrap.min.css" rel="stylesheet"> | ||
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"> | ||
</head> | ||
|
||
<body class="d-flex flex-column h-100 text-center"> | ||
<main class="flex-shrink-0"> | ||
<div class="container"> | ||
<div class="row"> | ||
<div class="col"> | ||
<div class="mx-auto w-50"> | ||
<h2 class="mt-5 mb-3">Oops! Something Went Wrong</h2> | ||
<p> | ||
There is an error in the page. Please check the server log for details. | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</main> | ||
|
||
<footer class="footer mt-auto py-3"> | ||
<div class="container"> | ||
<span class="text-muted"><i class="fa fa-github"></i> <a href="https://github.com/seikan/NodeList" target="_blank">Node List</a></span> | ||
</div> | ||
</footer> | ||
</body> | ||
|
||
</html> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,28 @@ | ||
# NodeList | ||
# Node List | ||
|
||
This is a small web application I wrote to keep track all my VPS and dedicated servers. The codes may messy as it was using by myself only in last 3 years. | ||
This is a PHP web application I wrote to keep track all my VPS and dedicated servers. It utilized some library written by myself. This application is storing records in CSV format. It's recommended to use by only yourself. | ||
|
||
The codes are written in PHP and frontend with [Bootstrap](http://getbootstrap.com/). The database is stored in CSV files with no MySQL or SQLite extension needed. | ||
|
||
I just added a `setup.php` so everyone can try to install and run it. | ||
|
||
I will continue update the application if needed. | ||
This application is maintained during my free time. Feel free to create pull request or [report issue](https://github.com/seikan/NodeList/issues) and I will have look whenever possible. | ||
|
||
|
||
|
||
### Requirements | ||
|
||
- PHP 7.2 and above. | ||
- Apache / Nginx web server. | ||
|
||
|
||
|
||
### Screenshots | ||
|
||
 | ||
|
||
|
||
|
||
 | ||
|
||
|
||
|
||
 |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
textarea{resize:none} | ||
input[type="text"],input[type="email"],input[type="search"],input[type="password"],input[type="number"],textarea{-webkit-appearance:none;-webkit-box-shadow:none !important;-moz-box-shadow:none !important;box-shadow:none !important} | ||
.machine-name,.machine-ip{cursor:pointer} | ||
.machine-ip .fa{visibility:hidden} | ||
.machine-ip:hover .fa{visibility:visible} | ||
.badge-hdd{font-size:8px;display:block} | ||
.swap{font-size:10px;color:var(--secondary)} | ||
.nat{font-size:6px;position:absolute;margin-top:-6px} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Access denied. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Access denied. |
Oops, something went wrong.