-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
static |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
web: monitor-server |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#Work Time Monitor | ||
An employee monitoring system that takes screenshots of user systems on a network, and archives the screenshots as compiled videos. While also tracking user login and logout time. | ||
|
||
THe server is built to work out of a raspberry pi, but any unix based computer like linux or a mac should work fine. | ||
|
||
A major dependency is ffmpeg for dealing with videos. Make sure you have it compiled with libx64 support |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
<ifModule mod_rewrite.c> | ||
|
||
|
||
####################################################################### | ||
# GENERAL # | ||
####################################################################### | ||
|
||
# Make apache follow sym links to files | ||
Options +FollowSymLinks | ||
# If somebody opens a folder, hide all files from the resulting folder list | ||
IndexIgnore */* | ||
|
||
|
||
####################################################################### | ||
# REWRITING # | ||
####################################################################### | ||
|
||
# Enable rewriting | ||
RewriteEngine On | ||
|
||
# If its not HTTPS | ||
RewriteCond %{HTTPS} off | ||
|
||
# Comment out the RewriteCond above, and uncomment the RewriteCond below if you're using a load balancer (e.g. CloudFlare) for SSL | ||
# RewriteCond %{HTTP:X-Forwarded-Proto} !https | ||
|
||
# Redirect to the same URL with https://, ignoring all further rules if this one is in effect | ||
RewriteRule ^(.*) https://%{HTTP_HOST}/$1 [R,L] | ||
|
||
# If we get to here, it means we are on https:// | ||
|
||
# If the file with the specified name in the browser doesn't exist | ||
RewriteCond %{REQUEST_FILENAME} !-f | ||
|
||
# and the directory with the specified name in the browser doesn't exist | ||
RewriteCond %{REQUEST_FILENAME} !-d | ||
|
||
# and we are not opening the root already (otherwise we get a redirect loop) | ||
RewriteCond %{REQUEST_FILENAME} !\/$ | ||
|
||
# Rewrite all requests to the root | ||
RewriteRule ^(.*) / | ||
|
||
</ifModule> |
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Large diffs are not rendered by default.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Large diffs are not rendered by default.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width,initial-scale=1"><link rel="manifest" href="manifest.json"><meta name="mobile-web-app-capable" content="yes"><title>monitor</title><link href="/main.afb540b747109a4408f37c09711ae03a.css" rel="stylesheet"></head><body><div id="app"></div><script type="text/javascript" src="/main.5dac17fd46e4a930e005.js"></script></body></html> |
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
.container{display:block} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
{ | ||
"name": "React Boilerplate", | ||
"icons": [ | ||
{ | ||
"src": "favicon.png", | ||
"sizes": "48x48", | ||
"type": "image/png", | ||
"density": 1.0 | ||
}, | ||
{ | ||
"src": "favicon.png", | ||
"sizes": "96x96", | ||
"type": "image/png", | ||
"density": 2.0 | ||
}, | ||
{ | ||
"src": "favicon.png", | ||
"sizes": "144x144", | ||
"type": "image/png", | ||
"density": 3.0 | ||
}, | ||
{ | ||
"src": "favicon.png", | ||
"sizes": "192x192", | ||
"type": "image/png", | ||
"density": 4.0 | ||
} | ||
], | ||
"start_url": "index.html", | ||
"display": "standalone", | ||
"orientation": "portrait", | ||
"background_color": "#FFFFFF" | ||
} |