Help This is driving me crazy
I've been stuck on this for days.
My web app is running fine on 127.0.0.0:8080.
When I move it to my live website in a sub folder eg: "Mysite.com/NewApp" the links to other pages and static js and css etc cant be found.
I've tried
app = Flask(__name__)
app.config['APPLICATION_ROOT'] = '/NewApp'
And would have thought that would be it, but it seems to make no difference.
I don't want to change lots of code so I have different version for dev and live and cant believe how difficult this has been.
Surely there is some simple setting I can use to tell the app to use '/NewApp' as the app root for all files in that folder not the website root.
It has some complicated Js and css, and I've messed around with the static folder buy cant get it to work.
Typical errors shown in my console in my browser. are at the bottom of this post.
I'm running nginx on windows.
----------------------------------------------------------------------------
Failed to load resource: the server responded with a status of 404 (NOT FOUND)Understand this errorAI
favicon.ico:1
Failed to load resource: the server responded with a status of 404 (NOT FOUND)Understand this errorAI
api/sentiment/xdce-crowd-sale:1
Failed to load resource: the server responded with a status of 404 (NOT FOUND)Understand this errorAI
api/price_history/xdc:1
Failed to load resource: the server responded with a status of 404 (NOT FOUND)Understand this errorAI
AiGui/:1935 Error: Error: Network response was not ok
at AiGui/:1846:23
(anonymous) @ AiGui/:1935Understand this errorAI
api/cmc_url/xdc%20network:1
Failed to load resource: the server responded with a status of 404 (NOT FOUND)Understand this errorAI
AiGui/:1805 Error fetching CMC URL: SyntaxError: Unexpected token '<', "<!doctype "... is not valid JSON
(anonymous) @ AiGui/:1805Understand this errorAI
styles.css:1
Failed to load resource: the server responded with a status of 404 (NOT FOUND)Understand this errorAI

I've been stuck on this for days.
My web app is running fine on 127.0.0.0:8080.
When I move it to my live website in a sub folder eg: "Mysite.com/NewApp" the links to other pages and static js and css etc cant be found.
I've tried
app = Flask(__name__)
app.config['APPLICATION_ROOT'] = '/NewApp'
And would have thought that would be it, but it seems to make no difference.
I don't want to change lots of code so I have different version for dev and live and cant believe how difficult this has been.
Surely there is some simple setting I can use to tell the app to use '/NewApp' as the app root for all files in that folder not the website root.
It has some complicated Js and css, and I've messed around with the static folder buy cant get it to work.
Typical errors shown in my console in my browser. are at the bottom of this post.
I'm running nginx on windows.
----------------------------------------------------------------------------
Failed to load resource: the server responded with a status of 404 (NOT FOUND)Understand this errorAI
favicon.ico:1
Failed to load resource: the server responded with a status of 404 (NOT FOUND)Understand this errorAI
api/sentiment/xdce-crowd-sale:1
Failed to load resource: the server responded with a status of 404 (NOT FOUND)Understand this errorAI
api/price_history/xdc:1
Failed to load resource: the server responded with a status of 404 (NOT FOUND)Understand this errorAI
AiGui/:1935 Error: Error: Network response was not ok
at AiGui/:1846:23
(anonymous) @ AiGui/:1935Understand this errorAI
api/cmc_url/xdc%20network:1
Failed to load resource: the server responded with a status of 404 (NOT FOUND)Understand this errorAI
AiGui/:1805 Error fetching CMC URL: SyntaxError: Unexpected token '<', "<!doctype "... is not valid JSON
(anonymous) @ AiGui/:1805Understand this errorAI
styles.css:1
Failed to load resource: the server responded with a status of 404 (NOT FOUND)Understand this errorAI