You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@apisix.apache.org by GitBox <gi...@apache.org> on 2022/04/19 01:47:42 UTC

[GitHub] [apisix] tzssangglass commented on issue #6840: help request: apisix gateway supports intranet access to all interfaces, and Internet HTTPS access to specified interfaces

tzssangglass commented on issue #6840:
URL: https://github.com/apache/apisix/issues/6840#issuecomment-1101913062

   You can create separate routes for http and https. In the route created for https, you can use the host and vars attributes to match specific https requests.
   
   ```
   curl -i http://127.0.0.1:9080/apisix/admin/routes/1  -H 'X-API-KEY: edd1c9f034335f136f87ad84b625c8f1' -X PUT -d '
   {
       "uri": "/hello",
       "host": "foo.com",
       "vars": [
           [
               "scheme",
               "==",
               "https"
           ]
       ]
   }'
   ```
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@apisix.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org