2025-03-03 14:05:33 +07:00
|
|
|
- name: Update site IIS web application
|
|
|
|
|
win_iis_website:
|
|
|
|
|
name: "{{ iis_site_name }}"
|
|
|
|
|
physical_path: "{{ target_path }}"
|
|
|
|
|
|
2025-03-04 09:44:41 +07:00
|
|
|
- name: Set ASPNETCORE_ENVIRONMENT for IIS site
|
|
|
|
|
win_shell: |
|
|
|
|
|
Import-Module WebAdministration
|
|
|
|
|
Add-WebConfigurationProperty -pspath "MACHINE/WEBROOT/APPHOST/{{ iis_site_name }}" `
|
2025-03-04 09:47:28 +07:00
|
|
|
-filter "system.webServer/aspNetCore/environmentVariables" `
|
|
|
|
|
-name "." `
|
2025-03-04 09:44:41 +07:00
|
|
|
-value @{name="ASPNETCORE_ENVIRONMENT"; value="{{ aspnetcore_environment }}"}
|
|
|
|
|
|
2025-03-03 14:05:33 +07:00
|
|
|
# - name: Restart IIS site to apply changes
|
|
|
|
|
# win_iis_website:
|
|
|
|
|
# name: "{{ iis_site_name }}"
|
|
|
|
|
# state: restarted
|
|
|
|
|
|