Giter Club home page Giter Club logo

Comments (6)

SteadyStatus21 avatar SteadyStatus21 commented on June 25, 2024 1

@e9x You are AMAZING!
Thank you so much!
-SteadyStatus21

from website-aio.

crapmonster77 avatar crapmonster77 commented on June 25, 2024

i dont know but do you know why its not working for me?

from website-aio.

SteadyStatus21 avatar SteadyStatus21 commented on June 25, 2024

What is your issue @crapmonster77?

from website-aio.

e9x avatar e9x commented on June 25, 2024

Hello! I am trying to convert my domain from http:// into https://. Is there a tool like certbot that can autorenew a ssl certificate and apply it for me?

Yes. Try certbot. This script isn't configured to run under HTTPS, and really isn't intended to be exposed directly to the internet. Ideally you would use a reverse proxy like what the deployment services listed will do. I recommend you setup NGINX and configure it to proxy the website-aio script.

Here's an example config:

# config w/letsencrypt
# HOSTNAME is a placeholder

server {
	listen 443 ssl http2;
	server_name HOSTNAME;

	location / {
		# Upgrade WebSockets
		proxy_set_header Upgrade $http_upgrade;
		proxy_set_header Connection 'Upgrade';
		# Increase header buffer
		proxy_connect_timeout 10;
		proxy_send_timeout 90;
		proxy_read_timeout 90;
		proxy_buffer_size 128k;
		proxy_buffers 4 256k;
		proxy_busy_buffers_size 256k;
		proxy_temp_file_write_size 256k;
		# website script
		proxy_pass http://127.0.0.1:80;
	}
        
	ssl_certificate /etc/letsencrypt/live/HOSTNAME-0001/fullchain.pem;
	ssl_certificate_key /etc/letsencrypt/live/HOSTNAME-0001/privkey.pem;
	include /etc/letsencrypt/options-ssl-nginx.conf;
	ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem;
}

from website-aio.

crapmonster77 avatar crapmonster77 commented on June 25, 2024

What is your issue @crapmonster77?
@SteadyStatus21
it just shows a gray screen

from website-aio.

e9x avatar e9x commented on June 25, 2024

it just shows a gray screen

open a separate issue..

from website-aio.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.