Compare commits

...

4 Commits

@ -0,0 +1,14 @@
version: "3"
services:
webserver:
image: nginx:latest
container_name: blackscreen-nginx
restart: unless-stopped
volumes:
- ./:/usr/share/nginx/html
- ./nginx.conf:/etc/nginx/nginx.conf:ro
networks:
default:
name: npm
external: true

@ -7,7 +7,7 @@
<meta name='description' content='Just a black web page'>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel='canonical' href='https://blackscreen.app/'>
<link rel='canonical' href='https://darkness.habedieeh.re/'>
<link rel="manifest" href="manifest.webmanifest">
<link rel="stylesheet" href="style.css">
<meta name='mobile-web-app-capable' content='yes'>
@ -22,16 +22,15 @@
<meta name='theme-color' content='#000000'>
<meta property='og:title' content='Black screen'>
<meta property='og:type' content='website'>
<meta property='og:image' content='https://blackscreen.app/images/icon-192x192.png'>
<meta property='og:url' content='https://blackscreen.app'>
<meta property='og:image' content='https://darkness.habedieeh.re/images/icon-192x192.png'>
<meta property='og:url' content='https://darkness.habedieeh.re'>
<meta property='og:description' content='Just a black web page'>
<meta name='twitter:card' content='summary'>
<meta name='twitter:url' content='https://blackscreen.app'>
<meta name='twitter:url' content='https://darkness.habedieeh.re'>
<meta name='twitter:title' content='Black screen'>
<meta name='twitter:description' content='Just a black web page'>
<meta name='twitter:image' content='https://blackscreen.app/images/icon-192x192.png'>
<meta name='twitter:creator' content='@pyxeldev'>
<script id="myownstats" data-mos-id="blackscreen" src="https://myownstats.com/tag.js" async defer></script>
<meta name='twitter:image' content='https://darkness.habedieeh.re/images/icon-192x192.png'>
<meta name='twitter:creator' content='@pyxeldev'><!-- Might as well keep that as credit-->
</head>
<body>
<div class="modal" id="modal-info">
@ -39,8 +38,8 @@
<div class="modal-container">
<h1>Black Screen</h1>
<h2>Just a black web page</h2>
<p>Created by <a href="https://kevinpy.com" target="_blank">Kevin Py</a> for <a href="https://pyxel.dev" target="_blank">Pyxel</a>.</p>
<p>Find the repository on <a href="https://gitlab.com/pyxeldev/blackscreen" target="_blank">Gitlab</a>.</p>
<p>Created by <a href="https://kevinpy.com" target="_blank">Kevin Py</a> for <a href="https://pyxel.dev" target="_blank">Pyxel</a>. Forked by shruub.</p>
<p>Find the repository on <a href="https://git.habedieeh.re/shruub/blackscreen-no-tracking" target="_blank">Gitea</a>.</p>
<p>You can double-click anywhere on the page to cover your entire screen with black!</p>
<p><a href="https://youtu.be/8H7mnObTScg" target="_blank">A 10 hours black screen video</a></p>
<button class="modal-close modal-exit" autofocus>

@ -3,7 +3,7 @@
"name": "Black Screen",
"version": "1.0",
"description": "Just a black web page",
"homepage_url": "https://blackscreen.app",
"homepage_url": "https://darkness.habedieeh.re",
"chrome_url_overrides": {
"newtab": "index.html"
},
@ -27,5 +27,4 @@
"service_worker": "background.js",
"type": "module"
},
"content_security_policy": "script-src 'self' https://myownstats.com; object-src 'self'"
}

@ -0,0 +1,34 @@
user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log notice;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
access_log off;
sendfile on;
#tcp_nopush on;
keepalive_timeout 65;
gzip on;
server {
listen 80;
location / {
root /usr/share/nginx/html; # for whatever reason, this needs to be decleared on my vps.
index index.html index.htm;
}
}
include /etc/nginx/conf.d/*.conf;
}

@ -1,5 +1,5 @@
# www.robotstxt.org/
# Allow crawling of all content
# Disallow crawling of all content, this might as well stay "private"
User-agent: *
Disallow:
Disallow: /
Loading…
Cancel
Save