Skip to content
This repository has been archived by the owner on Oct 29, 2023. It is now read-only.

A Django web-app for intelligently scheduling and displaying repeating tasks

Notifications You must be signed in to change notification settings

StevenTammen/csci-4300-final-project

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Setting up nginx

Add new location directives to nginx.conf

location ^~ /cycles/static/ {
	alias /home/student/projects/cycles/static/;
}

location ^~ /cycles/ {
	include uwsgi_params;
	uwsgi_pass 127.0.0.1:4305;
}

Then make sure you restart the server:

sudo systemctl restart nginx.service

The appropriate run command

uwsgi --http :4305 --module cycles.wsgi

Add your VM to ALLOWED_HOSTS in cycles/settings.py

This line here:

ALLOWED_HOSTS = ['*']

Once other people add there will more in the list.

About

A Django web-app for intelligently scheduling and displaying repeating tasks

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published