Coder Social home page Coder Social logo

Comments (6)

JKHeadley avatar JKHeadley commented on May 18, 2024 1

Hi @murilo-campaner, not sure if this is a rest-hapi specific issue, but I remember running into something similar earlier that was related to hapi-swagger. Updating to the latest version of hapi-swagger fixed the issue. If you use rest-hapi v0.27.3 and higher it uses an updated version of hapi-swagger that might help.

from rest-hapi.

murilo-campaner avatar murilo-campaner commented on May 18, 2024

Hello @JKHeadley! Thank you for your response!

I updated to rest-hapi v0.27.3 and now is all right, problem resolved! But... I got one another problem...

My server is running with nginx, and my api server is redirecting all HTTP requests to HTTPS. But, when I use swagger-ui to send requests, it give no response back and if I inspect in console, the requests is going by HTTP, not HTTPS.

captura de tela 2017-10-17 as 22 11 06

And here's my API code:

'use strict';

const Hapi = require('hapi');
const mongoose = require('mongoose');
const restHapi = require('rest-hapi');
const env = require('dotenv').config().parsed;


function api(){

    const hapiConfig = {
        server: 'https://api.youchoose.com.br',
        appTitle: "YouChoose API",
        enableTextSearch: true,
        docExpansion: "list",
        mongo: {
            URI: `mongodb://${env.DB_USER}:${env.DB_PASSWORD}@${env.DB_HOST}:${env.DB_PORT}/${env.DB_DATABASE}`
        }
    };
    restHapi.config = hapiConfig;


    const server = new Hapi.Server();

    server.connection({
        port : env.API_PORT,
        routes: {
            cors: {
                origin: ['*'],
                additionalHeaders: ['origin']
            }
        }
    });

    server.register({
        register: restHapi,
        options: {
            mongoose: mongoose,
        }
    },

    function () {
        server.start();
    });

    return server;
}

module.exports = api();

(If i use postman to send request using HTTPs, it works!)

I can open another issue if you want ok?

Thank you again!

from rest-hapi.

JKHeadley avatar JKHeadley commented on May 18, 2024

@murilo-campaner not sure what's going on here, but I have a project using HTTPS with functioning swagger, so I do know it can work. I'll try looking into it and see if I can find anything.

from rest-hapi.

JKHeadley avatar JKHeadley commented on May 18, 2024

Also, I would suggest posting your issue on the hapi-swagger page as well, since this seems to be centered on that plugin.

from rest-hapi.

rahil471 avatar rahil471 commented on May 18, 2024

@JKHeadley Do you have a project that uses Nginx proxy to redirect request on a path to your rest-hapi project port.
In my case, https://host/services proxys requests to https://host:8080. In this case, everything works as expected apart from the swagger doc, all the swagger statics are fetched from host/... and hence are 404.

Really not sure if it's a proxy issue or has something to do with the setup.

from rest-hapi.

JKHeadley avatar JKHeadley commented on May 18, 2024

@rahil471 I have not set up a project directly using Nginx, however, the project I mentioned above uses Cloudflare to redirect to rest-hapi, and I believe they use Nginx for reverse-proxying.

I will continue to look into this issue, but for now I suggest posting the issue on the hapi-swagger page or browsing their issues.

from rest-hapi.

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.