Как переписать правила перезаписи IIS web.config в nginx - PullRequest
0 голосов
/ 03 мая 2018

Мы перемещаем текущее приложение angular2 из iis в nginx. Пожалуйста, помогите мне переписать следующие правила в nginx.

web.config

<configuration>
<system.webServer>
    <rewrite>
      <rules>
        <rule name="Rewrite static files to content" stopProcessing="true">
          <match url="(?:\.css|\.js|\.html|\.eot|\.woff2|\.woff|\.ttf|\.jpg|\.png|\.gif|\.svg)$" />
          <action type="Rewrite" url="/{SCRIPT_NAME}" />
        </rule>
        <rule name="frontend">
            <match url="(?:\.css|\.js|\.html|\.eot|\.woff2|\.woff|\.ttf|\.jpg|\.png|\.gif|\.svg|\.txt|api/v1/Admin)" negate="true" />
            <action type="Rewrite" url="index.html" />
        </rule>
      </rules>
    </rewrite>
</system.webServer>

Nginix Config: Это мой текущий конфигурационный файл nginx.

<code>
server {
  listen 80;
  sendfile on;
  default_type application/octet-stream;

  root /usr/share/nginx/html;
  location ~ \.css$ {}
  location ~ \.js$ {}
  location / {
        alias /usr/share/nginx/html/myplanningui/;
        try_files $uri$args $uri$args/ /myplanningui/index.html;
  }
  location /myplanningui {
        alias /usr/share/nginx/html/myplanningui/;
        try_files $uri$args $uri$args/ /myplanningui/index.html;
  }
  location /myplanningui/ {
        alias /usr/share/nginx/html/myplanningui/;
        try_files $uri$args $uri$args/ /myplanningui/index.html;
  }
}
</code>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...