Auth0, React, Configuring callback url for deployment
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
I followed the tutorial given here :
https://auth0.com/blog/role-based-access-control-rbac-and-react-apps/
and it works all fine on localhost.
After deployment on a VPS (with Apache2), the callback url doesn't work anymore I get a 404 not found page from the server when I land on http://domainename/callback after authentication.
I have taken care of changing the callback url when deploying both in the app and among the authorized callback url from auth0.
I have tried to use an # in the domaine name :
http://domainame.com/#/callback
but it doesn't work.
I have two questions : how to make it works and why does it work on localhost:3000 and not on domainname.com...
reactjs deployment oauth oauth-2.0 callbackurl
add a comment |
I followed the tutorial given here :
https://auth0.com/blog/role-based-access-control-rbac-and-react-apps/
and it works all fine on localhost.
After deployment on a VPS (with Apache2), the callback url doesn't work anymore I get a 404 not found page from the server when I land on http://domainename/callback after authentication.
I have taken care of changing the callback url when deploying both in the app and among the authorized callback url from auth0.
I have tried to use an # in the domaine name :
http://domainame.com/#/callback
but it doesn't work.
I have two questions : how to make it works and why does it work on localhost:3000 and not on domainname.com...
reactjs deployment oauth oauth-2.0 callbackurl
add a comment |
I followed the tutorial given here :
https://auth0.com/blog/role-based-access-control-rbac-and-react-apps/
and it works all fine on localhost.
After deployment on a VPS (with Apache2), the callback url doesn't work anymore I get a 404 not found page from the server when I land on http://domainename/callback after authentication.
I have taken care of changing the callback url when deploying both in the app and among the authorized callback url from auth0.
I have tried to use an # in the domaine name :
http://domainame.com/#/callback
but it doesn't work.
I have two questions : how to make it works and why does it work on localhost:3000 and not on domainname.com...
reactjs deployment oauth oauth-2.0 callbackurl
I followed the tutorial given here :
https://auth0.com/blog/role-based-access-control-rbac-and-react-apps/
and it works all fine on localhost.
After deployment on a VPS (with Apache2), the callback url doesn't work anymore I get a 404 not found page from the server when I land on http://domainename/callback after authentication.
I have taken care of changing the callback url when deploying both in the app and among the authorized callback url from auth0.
I have tried to use an # in the domaine name :
http://domainame.com/#/callback
but it doesn't work.
I have two questions : how to make it works and why does it work on localhost:3000 and not on domainname.com...
reactjs deployment oauth oauth-2.0 callbackurl
reactjs deployment oauth oauth-2.0 callbackurl
asked Nov 23 '18 at 20:33
machinusmachinus
4116
4116
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Ok, the deal is not configuring react but configuring apache2.
Here is what I did :
Allowing Override for the Webpage in order to authorize the reading of a .htaccess file
Creating a .htaccess file with the following content :
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.html [L]
</IfModule>
Enabling mode_rewrite
Don't forget to allow the callback url in Auth0
Here is some documentation to help you :
- https://htaccess.madewithlove.be/
- How to enable mod_rewrite for Apache 2.2
- react-router redirect to index.html AND remove www from url in .htaccess
- https://gist.github.com/joellongie/e6f4a3b5fa98c521782619e487aca15a
- https://gist.github.com/leocaseiro/4305e06948aa97e77c93
- https://gist.github.com/jxnblk/6137537
- https://www.beyondjava.net/pretty-urls
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53452672%2fauth0-react-configuring-callback-url-for-deployment%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Ok, the deal is not configuring react but configuring apache2.
Here is what I did :
Allowing Override for the Webpage in order to authorize the reading of a .htaccess file
Creating a .htaccess file with the following content :
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.html [L]
</IfModule>
Enabling mode_rewrite
Don't forget to allow the callback url in Auth0
Here is some documentation to help you :
- https://htaccess.madewithlove.be/
- How to enable mod_rewrite for Apache 2.2
- react-router redirect to index.html AND remove www from url in .htaccess
- https://gist.github.com/joellongie/e6f4a3b5fa98c521782619e487aca15a
- https://gist.github.com/leocaseiro/4305e06948aa97e77c93
- https://gist.github.com/jxnblk/6137537
- https://www.beyondjava.net/pretty-urls
add a comment |
Ok, the deal is not configuring react but configuring apache2.
Here is what I did :
Allowing Override for the Webpage in order to authorize the reading of a .htaccess file
Creating a .htaccess file with the following content :
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.html [L]
</IfModule>
Enabling mode_rewrite
Don't forget to allow the callback url in Auth0
Here is some documentation to help you :
- https://htaccess.madewithlove.be/
- How to enable mod_rewrite for Apache 2.2
- react-router redirect to index.html AND remove www from url in .htaccess
- https://gist.github.com/joellongie/e6f4a3b5fa98c521782619e487aca15a
- https://gist.github.com/leocaseiro/4305e06948aa97e77c93
- https://gist.github.com/jxnblk/6137537
- https://www.beyondjava.net/pretty-urls
add a comment |
Ok, the deal is not configuring react but configuring apache2.
Here is what I did :
Allowing Override for the Webpage in order to authorize the reading of a .htaccess file
Creating a .htaccess file with the following content :
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.html [L]
</IfModule>
Enabling mode_rewrite
Don't forget to allow the callback url in Auth0
Here is some documentation to help you :
- https://htaccess.madewithlove.be/
- How to enable mod_rewrite for Apache 2.2
- react-router redirect to index.html AND remove www from url in .htaccess
- https://gist.github.com/joellongie/e6f4a3b5fa98c521782619e487aca15a
- https://gist.github.com/leocaseiro/4305e06948aa97e77c93
- https://gist.github.com/jxnblk/6137537
- https://www.beyondjava.net/pretty-urls
Ok, the deal is not configuring react but configuring apache2.
Here is what I did :
Allowing Override for the Webpage in order to authorize the reading of a .htaccess file
Creating a .htaccess file with the following content :
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.html [L]
</IfModule>
Enabling mode_rewrite
Don't forget to allow the callback url in Auth0
Here is some documentation to help you :
- https://htaccess.madewithlove.be/
- How to enable mod_rewrite for Apache 2.2
- react-router redirect to index.html AND remove www from url in .htaccess
- https://gist.github.com/joellongie/e6f4a3b5fa98c521782619e487aca15a
- https://gist.github.com/leocaseiro/4305e06948aa97e77c93
- https://gist.github.com/jxnblk/6137537
- https://www.beyondjava.net/pretty-urls
answered Nov 24 '18 at 10:48
machinusmachinus
4116
4116
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53452672%2fauth0-react-configuring-callback-url-for-deployment%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown