Forum | Documentation | Website | Blog

Skip to content
Snippets Groups Projects
Commit 821d036f authored by Robert Nelson's avatar Robert Nelson
Browse files

bb-customizations (1.20220802.0)


Signed-off-by: default avatarRobert Nelson <robertcnelson@gmail.com>
parent 9769aa97
No related merge requests found
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
</head>
<body>
<script>
let newurl = "http://" + location.host + ":1880/ui/";
window.location.href = newurl;
</script>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
</head>
<body>
<script>
let newurl = "http://" + location.host + ":1880/";
window.location.href = newurl;
</script>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
</head>
<body>
<script>
let newurl = "http://" + location.host + ":3000/";
window.location.href = newurl;
</script>
</body>
</html>
bb-customizations (1.20220725.3-0~bullseye+20220725) bullseye; urgency=low
bb-customizations (1.20220802.0-0~bullseye+20220802) bullseye; urgency=low
* Rebuild for repos.rcn-ee.com
-- Robert Nelson <robertcnelson@gmail.com> Mon, 25 Jul 2022 17:28:38 -0500
-- Robert Nelson <robertcnelson@gmail.com> Tue, 02 Aug 2022 09:43:50 -0500
......@@ -11,5 +11,9 @@ debian/uio-pruss.rules /etc/udev/rules.d/
debian/uio.rules /etc/udev/rules.d/
debian/beaglebg.jpg /usr/share/backgrounds/bbb.io/
debian/beagleboard-logo.svg /usr/share/backgrounds/bbb.io/
debian/nginx-autoindex /etc/bbb.io/templates/nginx/
debian/Node-RED-ui.html /etc/bbb.io/templates/nginx/
debian/Node-RED.html /etc/bbb.io/templates/nginx/
debian/VSCode.html /etc/bbb.io/templates/nginx/
debian/xfce4-desktop.xml /etc/bbb.io/templates/xfce4/
debian/ssh.service /etc/avahi/services/
##
# You should look at the following URL's in order to grasp a solid understanding
# of Nginx configuration files in order to fully unleash the power of Nginx.
# https://www.nginx.com/resources/wiki/start/
# https://www.nginx.com/resources/wiki/start/topics/tutorials/config_pitfalls/
# https://wiki.debian.org/Nginx/DirectoryStructure
#
# In most cases, administrators will remove this file from sites-enabled/ and
# leave it as reference inside of sites-available where it will continue to be
# updated by the nginx packaging team.
#
# This file will automatically load configuration files provided by other
# applications, such as Drupal or Wordpress. These applications will be made
# available underneath a path with that package name, such as /drupal8.
#
# Please see /usr/share/doc/nginx-doc/examples/ for more detailed examples.
##
# Default server configuration
#
server {
listen 80 default_server;
listen [::]:80 default_server;
# SSL configuration
#
# listen 443 ssl default_server;
# listen [::]:443 ssl default_server;
#
# Note: You should disable gzip for SSL traffic.
# See: https://bugs.debian.org/773332
#
# Read up on ssl_ciphers to ensure a secure configuration.
# See: https://bugs.debian.org/765782
#
# Self signed certs generated by the ssl-cert package
# Don't use them in a production server!
#
# include snippets/snakeoil.conf;
root /var/www/html;
# Add index.php to the list if you are using PHP
index index.html index.htm index.nginx-debian.html;
server_name _;
location / {
# First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
try_files $uri $uri/ =404;
autoindex on;
}
# pass PHP scripts to FastCGI server
#
#location ~ \.php$ {
# include snippets/fastcgi-php.conf;
#
# # With php-fpm (or other unix sockets):
# fastcgi_pass unix:/run/php/php7.4-fpm.sock;
# # With php-cgi (or other tcp sockets):
# fastcgi_pass 127.0.0.1:9000;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
# Virtual Host configuration for example.com
#
# You can move that to a different file under sites-available/ and symlink that
# to sites-enabled/ to enable it.
#
#server {
# listen 80;
# listen [::]:80;
#
# server_name example.com;
#
# root /var/www/example.com;
# index index.html;
#
# location / {
# try_files $uri $uri/ =404;
# }
#}
......@@ -4,7 +4,7 @@
package_name="bb-customizations"
debian_pkg_name="${package_name}"
package_version="1.20220725.3"
package_version="1.20220802.0"
package_source=""
src_dir=""
......@@ -19,4 +19,4 @@ debian_patch=""
clear_changelog="enable"
bullseye_version="~bullseye+20220725"
bullseye_version="~bullseye+20220802"
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment