我們的 Web 服務(wù)器正在偵聽(tīng) 80 和 8080 端口,我希望特定路由只能通過(guò)端口 8080 使用,但拒絕嘗試使用端口 80 訪問(wèn)該路由的所有用戶。我的routes.yamltesting-logging: path: /testing/logging controller: Test\Infrastructure\API\HTTP\Technical\LoggingController::handle methods: [GET]healthcheck: path: /healthcheck controller: Test\API\HTTP\Technical\HealthcheckController::handle methods: [GET]當(dāng)然,還有更多的路線,但它們就像這些路線一樣。它是一個(gè)微服務(wù),因此沒(méi)有任何用戶。我想通過(guò)自定義端口限制對(duì)某些路由的訪問(wèn)。當(dāng)然,其他路由必須像以前一樣使用標(biāo)準(zhǔn)端口。我試圖使用安全性:security: # https://symfony.com/doc/current/security.html#where-do-users-come-from-user-providers providers: in_memory: { memory: null } firewalls: dev: security: true anonymous: ~ methods: [POST] main: anonymous: lazy access_control: - { path: ^/healthcheck, roles: IS_AUTHENTICATED_ANONYMOUSLY, port: 8080 }
如何使用 Symfony 5 通過(guò)端口限制對(duì)某些路線的訪問(wèn)?
慕桂英3389331
2022-09-17 21:26:44