Last active
May 20, 2025 15:54
-
-
Save rorens05/8e5bbb87a5383588488bd7fba1ffe559 to your computer and use it in GitHub Desktop.
NGINX Setup and SSL Installation
This file contains hidden or 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
# install nginx | |
sudo apt-get install -y nginx-extras | |
# install generator | |
sudo apt install certbot python3-certbot-nginx |
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_read_timeout 60s;
proxy_set_header X-Forwarded-Proto https;
for react
server {
listen 80;
server_name webstore-prod.rorens.com;
root /var/www/skin-station-webstore-react/dist;
index index.html;
location / {
try_files $uri /index.html;
}
client_max_body_size 500M;
}
Setup the permissions
sudo chown -R www-data:www-data /var/www/skin-station-webstore-react
sudo find /var/www/skin-station-webstore-react -type d -exec chmod 755 {} \;
sudo find /var/www/skin-station-webstore-react -type f -exec chmod 644 {} \;
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
this is required for actioncable to work (Force SSL)
Full Config