Notifications
Clear all

Support for nginx?

 
Array
(
    [user_login] => eysteinh
    [user_nicename] => eysteinh
    [user_email] => [email protected]
    [user_url] => 
    [user_registered] => 2023-01-22 13:24:48
    [user_activation_key] => 
    [display_name] => eysteinh
    [first_name] => 
    [last_name] => 
    [userid] => 130
    [title] => Member
    [groupid] => 3
    [secondary_groupids] => Array
        (
        )

    [groupids] => Array
        (
            [0] => 3
        )

    [avatar] => 
    [cover] => 
    [posts] => 1
    [topics] => 1
    [questions] => 1
    [answers] => 0
    [comments] => 0
    [reactions_in] => Array
        (
            [up] => 0
            [down] => 0
            [__ALL__] => 0
        )

    [reactions_out] => Array
        (
            [up] => 0
            [down] => 0
            [__ALL__] => 0
        )

    [points] => 3
    [custom_points] => 0
    [online_time] => 1674393987
    [timezone] => UTC+0
    [location] => 
    [signature] => 
    [occupation] => 
    [about] => 
    [status] => active
    [is_email_confirmed] => 1
    [is_mention_muted] => 
    [fields] => Array
        (
        )

    [group_name] => Registered
    [group_color] => 
    [profile_url] => https://cardanopress.io/participant/eysteinh/
    [dname] => eysteinh
    [rating] => Array
        (
            [level] => 0
            [percent] => 0
            [color] => #d2d2d2
            [title] => New Member
            [badge] => far fa-star-half
        )

)
eysteinh
Posts: 1
New Member
Topic starter
 

I see we need to configure .htaccess for the plugin to work. However Nginx does not use .htaccess. I was wondering if there is support for Nginx as well say through configuring the nginx configuration files?

 
Posted : 22/01/2023 11:26 pm
Pete
 
Array
(
    [linkedin] => 
    [instagram] => 
    [vkontakte] => 
    [youtube] => https://www.youtube.com/learncardano
    [telegram] => 
    [facebook] => 
    [twitter] => https://twitter.com/astroboysoup
    [skype] => 
    [user_login] => [email protected]
    [user_nicename] => astroboysoup
    [user_email] => [email protected]
    [user_url] => https://cardanopress.io
    [user_registered] => 2022-05-30 13:29:29
    [user_activation_key] => 
    [display_name] => Pete
    [first_name] => 
    [last_name] => 
    [userid] => 1
    [title] => Admin
    [groupid] => 1
    [secondary_groupids] => Array
        (
            [0] => 0
        )

    [groupids] => Array
        (
            [0] => 1
        )

    [avatar] => //cardanopress.io/wp-content/uploads/wpforo/avatars/astroboysoup_1.png
    [cover] => 
    [posts] => 26
    [topics] => 4
    [questions] => 0
    [answers] => 0
    [comments] => 0
    [reactions_in] => Array
        (
            [up] => 1
            [down] => 0
            [__ALL__] => 1
        )

    [reactions_out] => Array
        (
            [up] => 0
            [down] => 0
            [__ALL__] => 0
        )

    [points] => 34.5
    [custom_points] => 0
    [online_time] => 1699509528
    [timezone] => 
    [location] => Australia
    [signature] => 

Please be careful of fake DMs

[occupation] => Developer [about] => [status] => active [is_email_confirmed] => 1 [is_mention_muted] => [fields] => Array ( [linkedin] => [instagram] => [vkontakte] => [youtube] => https://www.youtube.com/learncardano [telegram] => [facebook] => [twitter] => https://twitter.com/astroboysoup [skype] => ) [group_name] => Admin [group_color] => #FF3333 [profile_url] => https://cardanopress.io/participant/astroboysoup/ [dname] => Pete [rating] => Array ( [level] => 2 [percent] => 20 [color] => #4dca5c [title] => Eminent Member [badge] => fas fa-star ) )
Pete
Posts: 26
Eminent Member Admin
 

Hey @eysteinh

Yes, you need to allow the mime type the way Nginx servers manage the addition of mime-types.

See below

include /etc/nginx/mime.types;
types {
application/wasm wasm;
}
default_type application/octet-stream;

Here is a reference on Stackover flow about it with another file type.
https://stackoverflow.com/questions/21788833/nginx-mime-types-and-gzip

Please be careful of fake DMs

 
Posted : 23/01/2023 10:18 am